python2Packages.decorator: reinit at 4.4.2
This commit is contained in:
parent
b258054501
commit
c12c51062d
21
pkgs/development/python-modules/decorator/4.nix
Normal file
21
pkgs/development/python-modules/decorator/4.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user