10 buildPythonPackage rec {
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "JulienPalard";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-/xMhh70g2KPOOivTjpAuyfu+Z44tBE5zAwpSIEKhK6M=";
24 build-system = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "pipe" ];
31 # Test require network access
36 description = "Module to use infix notation";
37 homepage = "https://github.com/JulienPalard/Pipe";
38 changelog = "https://github.com/JulienPalard/Pipe/releases/tag/v${version}";
39 license = licenses.mit;
40 maintainers = with maintainers; [ fab ];