1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "decorator";
8 version = "4.4.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1pi54wqj2p6ka13x7q8d5zgqg9bcf7m5d00l7x5bi204qmhn65c6";
13 };
14
15 meta = with lib; {
16 homepage = https://pypi.python.org/pypi/decorator;
17 description = "Better living through Python with decorators";
18 license = lib.licenses.mit;
19 maintainers = [ maintainers.costrouc ];
20 };
21}