Merge pull request #306220 from fabaff/pipe
python312Packages.pipe: init at 2.2
This commit is contained in:
commit
9a32063e1b
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/pipe/default.nix
Normal file
42
pkgs/development/python-modules/pipe/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue