mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
36 lines
764 B
Nix
36 lines
764 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyasn1
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyasn1-modules";
|
|
version = "0.2.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyasn1 ];
|
|
|
|
nativeCheckInputs = [
|
|
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 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
|
|
};
|
|
}
|