59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, nix-update-script
|
||
|
, overrides
|
||
|
, setuptools
|
||
|
, pytest-check
|
||
|
, pytest-mock
|
||
|
, pytestCheckHook
|
||
|
, pydantic_1
|
||
|
, pyyaml
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "craft-grammar";
|
||
|
version = "1.2.0";
|
||
|
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "canonical";
|
||
|
repo = "craft-grammar";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-YQpxgdmUxYLkhAXDLlkLAK6VpjIEycLFY3nsE/M4o2g=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
setuptools
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
overrides
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"craft_grammar"
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pydantic_1
|
||
|
pytestCheckHook
|
||
|
pyyaml
|
||
|
];
|
||
|
|
||
|
pytestFlagsArray = [ "tests/unit" ];
|
||
|
|
||
|
passthru.updateScript = nix-update-script { };
|
||
|
|
||
|
meta = {
|
||
|
description = "Advanced grammar for Canonical's craft-parts library";
|
||
|
homepage = "https://github.com/canonical/craft-grammar";
|
||
|
changelog = "https://github.com/canonical/craft-grammar/releases/tag/${version}";
|
||
|
license = lib.licenses.lgpl3Only;
|
||
|
maintainers = with lib.maintainers; [ jnsgruk ];
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
}
|
||
|
|