about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/f5-icontrol-rest/default.nix
blob: f5dde3911546d79cf368a90eafdfe204bd41c680 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, six
}:

buildPythonPackage rec {
  pname = "f5-icontrol-rest";
  version = "1.3.16";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "F5Networks";
    repo = "f5-icontrol-rest-python";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-asAFIRoc2zll8a8gMMt4ZRQILhMAes8wf3PGwG5wF9c=";
  };

  propagatedBuildInputs = [
    requests
    six
  ];

  # needs to be updated to newer pytest version and requires physical device
  doCheck = false;

  pytestFlags = [
    "icontrol/test"
  ];

  pythonImportsCheck = [ "icontrol" ];

  meta = with lib; {
    description = "F5 BIG-IP iControl REST API client";
    homepage = "https://github.com/F5Networks/f5-icontrol-rest-python";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}