Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, more-itertools 5, setuptools-scm 6}: 7 8buildPythonPackage rec { 9 pname = "jaraco-functools"; 10 version = "3.6.0"; 11 format = "pyproject"; 12 13 src = fetchPypi { 14 pname = "jaraco.functools"; 15 inherit version; 16 hash = "sha256-Lho74Rq67O5fWrjdWJY4voMEzEy5E2H+Xmg/S22ft6M="; 17 }; 18 19 nativeBuildInputs = [ setuptools-scm ]; 20 21 propagatedBuildInputs = [ 22 more-itertools 23 ]; 24 25 doCheck = false; 26 27 pythonNamespaces = [ "jaraco" ]; 28 29 pythonImportsCheck = [ "jaraco.functools" ]; 30 31 meta = with lib; { 32 description = "Additional functools in the spirit of stdlib's functools"; 33 homepage = "https://github.com/jaraco/jaraco.functools"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ ]; 36 }; 37}