python3Packages.monosat: disable failing tests

main
P. R. d. O 2 years ago
parent 143aa3e88c
commit 17be6f75ce
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
  1. 9
      pkgs/applications/science/logic/monosat/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -65,7 +65,7 @@ let
};
};
python = { buildPythonPackage, cython }: buildPythonPackage {
python = { buildPythonPackage, cython, pytestCheckHook }: buildPythonPackage {
inherit pname version src patches;
propagatedBuildInputs = [ core cython ];
@ -85,5 +85,12 @@ let
substituteInPlace setup.py \
--replace 'library_dir = "../../../../"' 'library_dir = "${core}/lib/"'
'';
checkInputs = [ pytestCheckHook ];
disabledTests = [
"test_assertAtMostOne"
"test_assertEqual"
];
};
in core

@ -5366,7 +5366,7 @@ in {
monosat = pkgs.monosat.python {
inherit buildPythonPackage;
inherit (self) cython;
inherit (self) cython pytestCheckHook;
};
monotonic = callPackage ../development/python-modules/monotonic { };

Loading…
Cancel
Save