at master 626 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 setuptools, 6 pytestCheckHook, 7}: 8 9buildPythonPackage rec { 10 pname = "smmap"; 11 version = "6.0.0"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-jXkCjqbMEx2l6rCZpdlamY1DxneZVv/+O0VQQJEQdto="; 17 }; 18 19 build-system = [ setuptools ]; 20 21 pythonImportsCheck = [ "smmap" ]; 22 23 nativeCheckInputs = [ pytestCheckHook ]; 24 25 meta = { 26 description = "Pure python implementation of a sliding window memory map manager"; 27 homepage = "https://github.com/gitpython-developers/smmap"; 28 maintainers = [ ]; 29 license = lib.licenses.bsd3; 30 }; 31}