biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyombi / default.nix
blob5362e490e7e788d7cb52f724109de26c0c80f734
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "pyombi";
11   version = "0.1.10";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1ykbmdc2v05ly9q358j7g73ma9fsqdlclc8i0k1yd0bn7219icpx";
19   };
21   propagatedBuildInputs = [ requests ];
23   # Project has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "pyombi" ];
28   meta = with lib; {
29     description = "Python module to retrieve information from Ombi";
30     homepage = "https://github.com/larssont/pyombi";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };