mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge pull request #231889 from bcdarwin/unbreak-scikit-fuzzy
python310Packages.scikit-fuzzy: unbreak by disabling erroring test
This commit is contained in:
commit
1f5e55f1c4
@ -1,6 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, matplotlib
|
||||
, networkx
|
||||
@ -13,7 +13,9 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "scikit-fuzzy";
|
||||
version = "unstable-2022-11-07";
|
||||
disabled = isPy27;
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
@ -25,6 +27,9 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [ networkx numpy scipy ];
|
||||
nativeCheckInputs = [ matplotlib nose pytestCheckHook ];
|
||||
|
||||
# numpy API breakage: "AttributeError: module 'numpy' has no attribute 'float'"
|
||||
disabledTests = [ "test_fuzzy_compare" ];
|
||||
|
||||
pythonImportsCheck = [ "skfuzzy" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user