blob: b4c31955620d6fbcee03f5409d0277bd6031e511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pykira";
version = "0.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-MMjmA5N9Ms40eJP9fDDq+LIoPduAnqVrbNLXm+Vl5qw=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pykira" ];
meta = {
description = "Python module to interact with Kira modules";
homepage = "https://github.com/stu-gott/pykira";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|