43 lines
877 B
Nix
43 lines
877 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pipe";
|
||
|
version = "2.2";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "JulienPalard";
|
||
|
repo = "Pipe";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-/xMhh70g2KPOOivTjpAuyfu+Z44tBE5zAwpSIEKhK6M=";
|
||
|
};
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
pythonImportsCheck = [ "pipe" ];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Test require network access
|
||
|
"test_netcat"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Module to use infix notation";
|
||
|
homepage = "https://github.com/JulienPalard/Pipe";
|
||
|
changelog = "https://github.com/JulienPalard/Pipe/releases/tag/v${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|