My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pykira/default.nix

25 lines
543 B

{ 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 ];
};
}