summary refs log tree commit diff
path: root/pkgs/development/python-modules/ucsmsdk/default.nix
blob: f9d1cf6c1d79a20980294d321a3c566576f0ea70 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, six
}:

buildPythonPackage rec {
  pname = "ucsmsdk";
  version = "0.9.14";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "CiscoUcs";
    repo = "ucsmsdk";
    rev = "v${version}";
    hash = "sha256-lSkURvKRgW+qV1A8OT4WYsMGlxxIqaFnxQ3Rnlixdw0=";
  };

  propagatedBuildInputs = [
    pyparsing
    six
  ];

  # most tests are broken
  doCheck = false;

  pythonImportsCheck = [ "ucsmsdk" ];

  meta = with lib; {
    description = "Python SDK for Cisco UCS";
    homepage = "https://github.com/CiscoUcs/ucsmsdk";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}