about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pysmart-smartx/default.nix
blob: 66b789668a01bb760cdf8efe10e5550fd956fb19 (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
, isPy3k
, future
, pytestCheckHook
, mock
}:

buildPythonPackage rec {
  pname = "pysmart-smartx";
  version = "0.3.10";

  src = fetchFromGitHub {
    owner = "smartxworks";
    repo = "pySMART";
    rev = "v${version}";
    sha256 = "1irl4nlgz3ds3aikraa9928gzn6hz8chfh7jnpmq2q7d2vqbdrjs";
  };

  propagatedBuildInputs = [ future ];

  # tests require contextlib.nested
  doCheck = !isPy3k;

  checkInputs = [ pytestCheckHook mock ];

  pythonImportsCheck = [ "pySMART" ];

  meta = with lib; {
    description = "It's a fork of pySMART with lots of bug fix and enhances";
    homepage = "https://github.com/smartxworks/pySMART";
    maintainers = with maintainers; [ rhoriguchi ];
    license = licenses.gpl2Only;
  };
}