94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
41 lines
967 B
Nix
41 lines
967 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, matplotlib
|
|
, networkx
|
|
, nose
|
|
, numpy
|
|
, scipy
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scikit-fuzzy";
|
|
version = "unstable-2022-11-07";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "d8c45c259d62955004379592e45bc64c8e002fc3";
|
|
hash = "sha256-kS48aHC719wUdc2WcJa9geoMUcLHSj7ZsoRZYAhF2a0=";
|
|
};
|
|
|
|
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; {
|
|
homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy";
|
|
description = "Fuzzy logic toolkit for scientific Python";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
};
|
|
}
|