python2Packages.decorator: reinit at 4.4.2

This commit is contained in:
Martin Weinelt 2021-08-28 03:48:01 +02:00
parent f107f02640
commit c16fb103ba
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "decorator";
version = "4.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "1rxzhk5zwiggk45hl53zydvy70lk654kg0nc1p54090p402jz9p3";
};
meta = with lib; {
homepage = "https://pypi.python.org/pypi/decorator";
description = "Better living through Python with decorators";
license = lib.licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -82,6 +82,8 @@ with self; with super; {
dateparser = callPackage ../development/python-modules/dateparser/0.x.nix { };
decorator = callPackage ../development/python-modules/decorator/4.nix { };
deskcon = callPackage ../development/python-modules/deskcon { };
django_evolution = callPackage ../development/python-modules/django_evolution { };