Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 468 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "wrapt"; 8 version = "1.11.2"; 9 10 # No tests in archive 11 doCheck = false; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1"; 16 }; 17 18 meta = { 19 description = "Module for decorators, wrappers and monkey patching"; 20 license = lib.licenses.bsd2; 21 homepage = https://github.com/GrahamDumpleton/wrapt; 22 }; 23}