about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyasn1-modules/default.nix
blob: 87e72e1ae5bdd4ea0e65ad536c7228d8c70d147f (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
{ stdenv
, buildPythonPackage
, fetchPypi
, pyasn1
, pytest
}:

buildPythonPackage rec {
  pname = "pyasn1-modules";
  version = "0.2.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e";
  };

  propagatedBuildInputs = [ pyasn1 ];

  checkInputs = [
    pytest
  ];

  # running tests through setup.py fails only for python2 for some reason:
  # AttributeError: 'module' object has no attribute 'suitetests'
  checkPhase = ''
    py.test
  '';

  meta = with stdenv.lib; {
    description = "A collection of ASN.1-based protocols modules";
    homepage = "https://pypi.python.org/pypi/pyasn1-modules";
    license = licenses.bsd3;
    platforms = platforms.unix;  # same as pyasn1
  };
}