Merge pull request #306220 from fabaff/pipe

python312Packages.pipe: init at 2.2
This commit is contained in:
Fabian Affolter 2024-04-24 16:33:05 +02:00 committed by GitHub
commit 9a32063e1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -9772,6 +9772,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 {