blob: 35e5e88fe2f583e15b62d9155a01849a111d11a1 (
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
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "pyombi";
version = "0.1.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1ykbmdc2v05ly9q358j7g73ma9fsqdlclc8i0k1yd0bn7219icpx";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyombi" ];
meta = {
description = "Python module to retrieve information from Ombi";
homepage = "https://github.com/larssont/pyombi";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|