1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "decorator";
8 version = "5.1.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330";
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}