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 inherit pname version; 15 hash = "sha256-Lho74Rq67O5fWrjdWJY4voMEzEy5E2H+Xmg/S22ft6M="; 16 }; 17 18 nativeBuildInputs = [ setuptools-scm ]; 19 20 propagatedBuildInputs = [ 21 more-itertools 22 ]; 23 24 doCheck = false; 25 26 pythonNamespaces = [ "jaraco" ]; 27 28 pythonImportsCheck = [ "jaraco.functools" ]; 29 30 meta = with lib; { 31 description = "Additional functools in the spirit of stdlib's functools"; 32 homepage = "https://github.com/jaraco/jaraco.functools"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ ]; 35 }; 36}