5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
42 lines
877 B
Nix
42 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 ];
|
|
};
|
|
}
|