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