python310Packages.decorator: Use SRI hash

This commit is contained in:
Martin Weinelt 2023-03-03 03:03:54 +01:00
parent 8ad0eb1ced
commit 11b3723317

View File

@ -6,16 +6,17 @@
buildPythonPackage rec {
pname = "decorator";
version = "5.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330";
hash = "sha256-Y3mWIRA2tjhe+RQ15PriKYlHL51XH6uoknuoJTrLwzA=";
};
meta = with lib; {
homepage = "https://pypi.python.org/pypi/decorator";
homepage = "https://github.com/micheles/decorator";
description = "Better living through Python with decorators";
license = lib.licenses.mit;
maintainers = [ maintainers.costrouc ];
license = licenses.bsd2;
maintainers = with maintainers; [ costrouc ];
};
}