mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python2Packages.decorator: remove
This commit is contained in:
parent
c1c1104596
commit
2a54a83573
2 changed files with 0 additions and 23 deletions
|
@ -1,21 +0,0 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -26,8 +26,6 @@ with self; with super; {
|
|||
|
||||
coverage = callPackage ../development/python2-modules/coverage { };
|
||||
|
||||
decorator = callPackage ../development/python2-modules/decorator { };
|
||||
|
||||
enum = callPackage ../development/python2-modules/enum { };
|
||||
|
||||
filelock = callPackage ../development/python2-modules/filelock { };
|
||||
|
|
Loading…
Reference in a new issue