python312Packages.pipe: init at 2.2

Module to use infix notation

https://github.com/JulienPalard/Pipe
This commit is contained in:
Fabian Affolter 2024-04-23 10:39:00 +02:00
parent db176ef1d6
commit 81df8a7206
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{
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 ];
};
}

View File

@ -9764,6 +9764,8 @@ self: super: with self; {
pipdeptree = callPackage ../development/python-modules/pipdeptree { };
pipe = callPackage ../development/python-modules/pipe { };
pipenv-poetry-migrate = callPackage ../development/python-modules/pipenv-poetry-migrate { };
piper-phonemize = callPackage ../development/python-modules/piper-phonemize {