python3Packages.pipcl: init at v4
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user