about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hole/default.nix
blob: 3175a8fabb5801d4d20206f2cd9d3f71cf3af106 (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
33
34
35
36
37
38
39
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "hole";
  version = "0.7.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-yZpzGfB5RTWaRn2DmT+cbSDC0pL16FyUc0Nr/V6TlhU=";
  };

  propagatedBuildInputs = [
    aiohttp
    async-timeout
  ];

  # no tests are present
  doCheck = false;

  pythonImportsCheck = [
    "hole"
  ];

  meta = with lib; {
    description = "Python API for interacting with a Pihole instance.";
    homepage = "https://github.com/home-assistant-ecosystem/python-hole";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}