3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/decorator/default.nix

22 lines
460 B
Nix
Raw Normal View History

2017-12-31 11:24:15 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "decorator";
version = "4.4.0";
2017-12-31 11:24:15 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1pi54wqj2p6ka13x7q8d5zgqg9bcf7m5d00l7x5bi204qmhn65c6";
2017-12-31 11:24:15 +00:00
};
meta = with lib; {
2017-12-31 11:24:15 +00:00
homepage = https://pypi.python.org/pypi/decorator;
description = "Better living through Python with decorators";
license = lib.licenses.mit;
maintainers = [ maintainers.costrouc ];
2017-12-31 11:24:15 +00:00
};
}