mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.parameterized: disable tests for python38
This commit is contained in:
parent
6dc311dbce
commit
ceeeeeaf41
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, nose, mock, glibcLocales, isPy3k }:
|
||||
{ stdenv, fetchPypi, buildPythonPackage, nose, mock, glibcLocales, isPy3k, isPy38 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "parameterized";
|
||||
|
@ -10,7 +10,8 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
# Tests require some python3-isms but code works without.
|
||||
doCheck = isPy3k;
|
||||
# python38 is not fully supported yet
|
||||
doCheck = isPy3k && (!isPy38);
|
||||
|
||||
checkInputs = [ nose mock glibcLocales ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue