summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyopnsense/default.nix
blob: f4f5bf6c70d454d26d3b712de4b465a18f064345 (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
40
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchPypi
, fixtures
, mock
, pbr
, pytest-cov
, pytestCheckHook
, pythonOlder
, requests
, six
}:

buildPythonPackage rec {
  pname = "pyopnsense";
  version = "0.3.0";
  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06rssdb3zhccnm63z96mw5yd38d9i99fgigfcdxn9divalbbhp5a";
  };

  propagatedBuildInputs = [
    pbr
    six
    requests
  ];

  checkInputs = [
    fixtures
    mock
    pytest-cov
    pytestCheckHook
  ];

  pythonImportsCheck = [ "pyopnsense" ];

  meta = with lib; {
    description = "Python client for the OPNsense API";
    homepage = "https://github.com/mtreinish/pyopnsense";
    license = with licenses; [ gpl3Plus ];
    maintainers = with maintainers; [ fab ];
  };
}