about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/axis/default.nix
blob: 707d958bab5373788a55bff853341cfa917e2fb0 (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
{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, httpx
, packaging
, xmltodict
}:

buildPythonPackage rec {
  pname = "axis";
  version = "43";

  src = fetchFromGitHub {
    owner = "Kane610";
    repo = pname;
    rev = "v${version}";
    sha256 = "1p9yfixsrkw7rxbvgybcb653rbqv0x18wzqkh620g193snm9sgm2";
  };

  propagatedBuildInputs = [
    attrs
    httpx
    packaging
    xmltodict
  ];

  # Tests requires a server on localhost
  doCheck = false;
  pythonImportsCheck = [ "axis" ];

  meta = with lib; {
    description = "Python library for communicating with devices from Axis Communications";
    homepage = "https://github.com/Kane610/axis";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}