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