about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/napalm/hp-procurve.nix
blob: 6402005bed6efe48fe7d5aba77dca2014ce3fb81 (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
58
59
60
61
62
63
64
65
66
67
68
{ lib
, buildPythonPackage
, fetchFromGitHub
, napalm
, netmiko
, pip
, pytestCheckHook
, pythonOlder
}:

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

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "napalm-automation-community";
    repo = "napalm-hp-procurve";
    rev = "refs/tags/${version}";
    hash = "sha256-cO4kxI90krj1knzixRKWxa77OAaxjO8dLTy02VpkV9M=";
  };

  patchPhase = ''
    # Dependency installation in setup.py doesn't work
    echo -n > requirements.txt
    substituteInPlace setup.cfg \
      --replace "--cov=napalm_procurve --cov-report term-missing -vs --pylama" ""
  '';

  nativeBuildInputs = [
    pip
  ];

  buildInputs = [
    napalm
  ];

  propagatedBuildInputs = [
    netmiko
  ];

  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"
    "test_get_facts"
  ];

  pythonImportsCheck = [
    "napalm_procurve"
  ];

  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; [ ];
  };
}