nixpkgs/pkgs/development/python-modules/pipcl/default.nix
2026-07-03 13:17:46 +00:00

34 lines
669 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "pipcl";
version = "11";
pyproject = true;
src = fetchFromGitHub {
owner = "ArtifexSoftware";
repo = "pipcl";
tag = "v${finalAttrs.version}";
hash = "sha256-Gefz+BUWojruztnb1zEJWqBNU3HzdPjl/pw9lce+R7Y=";
};
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 ];
};
})