1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

kas: 4.2 -> 4.4

This commit is contained in:
Pascal Bach 2024-09-03 22:09:44 +02:00
parent 9155ee1f34
commit 333855c2ae

View file

@ -2,16 +2,16 @@
python3.pkgs.buildPythonApplication rec {
pname = "kas";
version = "4.2";
version = "4.4";
src = fetchFromGitHub {
owner = "siemens";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-NjNPcCqmjFeydTgNdN8QRrFG5Mys2jL4I8TiznO2rSA=";
hash = "sha256-ws2V16HSGn2zyMmcG601ScHfONSE/DBVO3Gaj8dktf4=";
};
propagatedBuildInputs = with python3.pkgs; [ setuptools kconfiglib jsonschema distro pyyaml ];
propagatedBuildInputs = with python3.pkgs; [ setuptools kconfiglib jsonschema distro pyyaml gitpython ];
# Tests require network as they try to clone repos
doCheck = false;