pythonPackages.decorator: 4.3.2 -> 4.4.0

This commit is contained in:
Chris Ostrouchov 2019-07-16 08:01:31 -04:00 committed by Frederik Rietdijk
parent a1fd212536
commit a0fae1b615

View File

@ -5,16 +5,17 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "decorator"; pname = "decorator";
version = "4.3.2"; version = "4.4.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "33cd704aea07b4c28b3eb2c97d288a06918275dac0ecebdaf1bc8a48d98adb9e"; sha256 = "1pi54wqj2p6ka13x7q8d5zgqg9bcf7m5d00l7x5bi204qmhn65c6";
}; };
meta = { meta = with lib; {
homepage = https://pypi.python.org/pypi/decorator; homepage = https://pypi.python.org/pypi/decorator;
description = "Better living through Python with decorators"; description = "Better living through Python with decorators";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = [ maintainers.costrouc ];
}; };
} }