python3Packages.pykira: init at 0.1.2

This commit is contained in:
Fabian Affolter 2021-01-13 21:48:15 +01:00
parent b451286b1f
commit 1bc0c5a79f
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pykira";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "0zxglzmd2k1nc4wri76ykra910fdgli027nw9d6541ic7xmw87vj";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pykira" ];
meta = with lib; {
description = "Python module to interact with Kira modules";
homepage = "https://github.com/stu-gott/pykira";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5416,6 +5416,8 @@ in {
pykickstart = callPackage ../development/python-modules/pykickstart { };
pykira = callPackage ../development/python-modules/pykira { };
pykka = callPackage ../development/python-modules/pykka { };
pykwalify = callPackage ../development/python-modules/pykwalify { };