Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 498 B view raw
1{ lib, fetchPypi, buildPythonPackage, nosexcover }: 2 3buildPythonPackage rec { 4 pname = "smmap2"; 5 version = "2.0.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a"; 10 }; 11 12 checkInputs = [ nosexcover ]; 13 14 meta = { 15 description = "A pure python implementation of a sliding window memory map manager"; 16 homepage = https://pypi.org/project/smmap2; 17 maintainers = [ ]; 18 license = lib.licenses.bsd3; 19 }; 20}