mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
34 lines
668 B
Nix
34 lines
668 B
Nix
{
|
|
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 ];
|
|
};
|
|
})
|