blob: ce8f13194e914a6eb9cff5533fcbe9e99b25b725 (
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 = "oocsi";
version = "0.4.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-AgDBsPoi0aQ6uglc7Zl4gxVmeyDCysoef5vZpxgwE/Q=";
};
# Tests are not shipped
doCheck = false;
pythonImportsCheck = [ "oocsi" ];
meta = {
description = "OOCSI library for Python";
homepage = "https://github.com/iddi/oocsi-python";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|