2017-12-31 11:24:15 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "decorator";
|
2018-06-12 17:46:59 +01:00
|
|
|
version = "4.3.0";
|
2017-12-31 11:24:15 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:46:59 +01:00
|
|
|
sha256 = "c39efa13fbdeb4506c476c9b3babf6a718da943dab7811c206005a4a956c080c";
|
2017-12-31 11:24:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://pypi.python.org/pypi/decorator;
|
|
|
|
description = "Better living through Python with decorators";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|