Files
nixpkgs/pkgs/development/python-modules/craft-cli/default.nix
2025-07-22 11:51:02 +02:00

66 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
platformdirs,
jinja2,
overrides,
pyyaml,
setuptools-scm,
pytest-check,
pytest-mock,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "craft-cli";
version = "3.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "canonical";
repo = "craft-cli";
tag = version;
hash = "sha256-ryNHl/c8Pg2mGQHE9Dbd0bLU80NyCyxfhd2YQGEBN40=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools==75.2.0" "setuptools"
'';
build-system = [ setuptools-scm ];
dependencies = [
jinja2
overrides
platformdirs
pyyaml
];
pythonImportsCheck = [ "craft_cli" ];
nativeCheckInputs = [
pytest-check
pytest-mock
pytestCheckHook
writableTmpDirAsHomeHook
];
enabledTestPaths = [ "tests/unit" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "CLI builder for Canonical's CLI Guidelines";
homepage = "https://github.com/canonical/craft-cli";
changelog = "https://github.com/canonical/craft-cli/releases/tag/${version}";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ jnsgruk ];
platforms = lib.platforms.linux;
};
}