blob: c3303902bf6ff51eedb4e33732c6eb55c9712182 (
plain) (
blame)
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
29
30
31
32
|
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pykira";
version = "0.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MMjmA5N9Ms40eJP9fDDq+LIoPduAnqVrbNLXm+Vl5qw=";
};
# 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 ];
};
}
|