657f08b14c
GitOrigin-RevId: 807e9154dcb16384b1b765ebe9cd2bba2ac287fd
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
annotated-types,
|
|
distro,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
hypothesis,
|
|
pytest-check,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "craft-platforms";
|
|
version = "0.4.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = "craft-platforms";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-MzHjnOvsloT1Vf5NjI5jyFBvCo3v5ovvpWuwOJ/O/0A=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace craft_platforms/__init__.py --replace-fail "dev" "${version}"
|
|
'';
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
dependencies = [
|
|
annotated-types
|
|
distro
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
pytestCheckHook
|
|
pytest-check
|
|
];
|
|
|
|
pythonImportsCheck = [ "craft_platforms" ];
|
|
|
|
pytestFlagsArray = [ "tests/unit" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Manage platforms and architectures for charm applications";
|
|
homepage = "https://github.com/canonical/craft-platforms";
|
|
changelog = "https://github.com/canonical/craft-platforms/releases/tag/${version}";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ jnsgruk ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|