Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1018 B
Nix
52 lines
1018 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
testers,
|
|
kas,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "kas";
|
|
version = "4.8.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "siemens";
|
|
repo = "kas";
|
|
tag = version;
|
|
hash = "sha256-mDfGiWZKipbaXxlyx8JWeFvSyE44FcumYD9Pr/38UBQ=";
|
|
};
|
|
|
|
patches = [ ./pass-terminfo-env.patch ];
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
setuptools # pkg_resources is imported during runtime
|
|
kconfiglib
|
|
jsonschema
|
|
distro
|
|
pyyaml
|
|
gitpython
|
|
];
|
|
|
|
# Tests require network as they try to clone repos
|
|
doCheck = false;
|
|
passthru.tests.version = testers.testVersion {
|
|
package = kas;
|
|
command = "kas --version";
|
|
};
|
|
|
|
pythonImportsCheck = [ "kas" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/siemens/kas";
|
|
description = "Setup tool for bitbake based projects";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bachp ];
|
|
};
|
|
}
|