about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/napalm/hp-procurve.nix
blob: 87dad04cf7813e09ab9c5b0640eb58aeab39eb9b (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
46
47
48
49
50
51
52
53
54
55
56
57
{ lib
, buildPythonPackage
, fetchFromGitHub
, napalm
, netmiko
, pip
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "napalm-hp-procurve";
  version = "0.7.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "napalm-automation-community";
    repo = pname;
    rev = version;
    hash = "sha256-cO4kxI90krj1knzixRKWxa77OAaxjO8dLTy02VpkV9M=";
  };

  nativeBuildInputs = [
    pip
  ];

  # dependency installation in setup.py doesn't work
  patchPhase = ''
    echo -n > requirements.txt
  '';

  buildInputs = [ napalm ];

  propagatedBuildInputs = [ netmiko ];

  # setup.cfg seems to contain invalid pytest parameters
  preCheck = ''
    rm setup.cfg
  '';

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTests = [
    # AssertionError: Some methods vary.
    "test_method_signatures"
    # AttributeError: 'PatchedProcurveDriver' object has no attribute 'platform'
    "test_get_config_filtered"
    # AssertionError
    "test_get_interfaces"
  ];

  meta = with lib; {
    description = "HP ProCurve Driver for NAPALM automation frontend";
    homepage = "https://github.com/napalm-automation-community/napalm-hp-procurve";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}