forked from mirrors/nixpkgs
20 lines
418 B
Nix
20 lines
418 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "decorator";
|
||
|
version = "4.0.11";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "953d6bf082b100f43229cf547f4f97f97e970f5ad645ee7601d55ff87afdfe76";
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
homepage = https://pypi.python.org/pypi/decorator;
|
||
|
description = "Better living through Python with decorators";
|
||
|
license = lib.licenses.mit;
|
||
|
};
|
||
|
}
|