python3Packages.pipcl: init at v4

This commit is contained in:
Sarah Clark
2026-05-10 12:36:54 -07:00
parent a84c9a620e
commit c9b93814ba
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "pipcl";
version = "4";
pyproject = true;
src = fetchFromGitHub {
owner = "ArtifexSoftware";
repo = "pipcl";
tag = "v${finalAttrs.version}";
hash = "sha256-1dTjxMuOFWeK4L+m4dbllNVwV36MmhsICTplfEKIOxk=";
};
build-system = [
setuptools
];
pythonImportsCheck = [
"pipcl"
];
meta = {
description = "Python packaging operations for use by a `setup.py";
homepage = "https://github.com/ArtifexSoftware/pipcl";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ sarahec ];
};
})
+2
View File
@@ -12590,6 +12590,8 @@ self: super: with self; {
pip-tools = callPackage ../development/python-modules/pip-tools { };
pipcl = callPackage ../development/python-modules/pipcl { };
pipdate = callPackage ../development/python-modules/pipdate { };
pipdeptree = callPackage ../development/python-modules/pipdeptree { };