python: decorator: 4.4.0 -> 4.4.1

This commit is contained in:
Frederik Rietdijk 2019-11-19 15:35:34 +01:00
parent 7d3992a16f
commit 417f9a5b41

View File

@ -5,13 +5,17 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "decorator"; pname = "decorator";
version = "4.4.0"; version = "4.4.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1pi54wqj2p6ka13x7q8d5zgqg9bcf7m5d00l7x5bi204qmhn65c6"; sha256 = "54c38050039232e1db4ad7375cfce6748d7b41c29e95a081c8a6d2c30364a2ce";
}; };
postPatch = ''
substituteInPlace src/tests/test.py --replace "DocumentationTestCase" "NoDocumentation"
'';
meta = with lib; { 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";