20 lines
417 B
Nix
20 lines
417 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "decorator";
|
|
version = "4.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c39efa13fbdeb4506c476c9b3babf6a718da943dab7811c206005a4a956c080c";
|
|
};
|
|
|
|
meta = {
|
|
homepage = https://pypi.python.org/pypi/decorator;
|
|
description = "Better living through Python with decorators";
|
|
license = lib.licenses.mit;
|
|
};
|
|
} |