2019-05-01 12:26:05 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyasn1
|
|
|
|
, isPyPy
|
|
|
|
, pytest
|
|
|
|
}:
|
2017-11-02 23:35:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyasn1-modules";
|
2019-04-24 17:42:49 +01:00
|
|
|
version = "0.2.5";
|
2017-11-02 23:35:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-24 17:42:49 +01:00
|
|
|
sha256 = "ef721f68f7951fab9b0404d42590f479e30d9005daccb1699b0a51bb4177db96";
|
2017-11-02 23:35:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyasn1 ];
|
|
|
|
|
2019-05-01 12:26:05 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
# running tests through setup.py fails only for python2 for some reason:
|
|
|
|
# AttributeError: 'module' object has no attribute 'suitetests'
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2017-11-02 23:35:52 +00:00
|
|
|
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
|
|
|
|
};
|
|
|
|
}
|