9 buildPythonPackage rec {
13 # Used github as the src since the pypi package does not include the tests
14 src = fetchFromGitHub {
17 rev = "6cba9fadab07a16fd85eed16d5cffc609f84c62b";
18 hash = "sha256-BoZFePQCQfz1dkct5p/WQLuXoNX3eLcnKf3Mf0fG6u8=";
21 nativeCheckInputs = [ pytestCheckHook ];
23 propagatedBuildInputs = [ setuptools ];
25 pythonImportsCheck = [ "pipetools" ];
28 description = "Library that enables function composition similar to using Unix pipes";
29 homepage = "https://0101.github.io/pipetools/";
30 license = lib.licenses.mit;