python3Packages.scikit-fuzzy: init at unstable-2020-10-03
This commit is contained in:
parent
663d0f06fb
commit
a68766978d
2 changed files with 36 additions and 0 deletions
34
pkgs/development/python-modules/scikit-fuzzy/default.nix
Normal file
34
pkgs/development/python-modules/scikit-fuzzy/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, isPy27
|
||||||
|
, fetchFromGitHub
|
||||||
|
, matplotlib
|
||||||
|
, networkx
|
||||||
|
, nose
|
||||||
|
, numpy
|
||||||
|
, scipy
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "scikit-fuzzy";
|
||||||
|
version = "unstable-2020-10-03";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = pname;
|
||||||
|
repo = pname;
|
||||||
|
rev = "eecf303b701e3efacdc9b9066207ef605d4facaa";
|
||||||
|
sha256 = "18dl0017iqwc7446hqgabhibgjwdakhmycpis6zpvvkkv4ip5062";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ networkx numpy scipy ];
|
||||||
|
checkInputs = [ matplotlib nose pytestCheckHook ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy";
|
||||||
|
description = "Fuzzy logic toolkit for scientific Python";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.bcdarwin ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6341,6 +6341,8 @@ in {
|
||||||
|
|
||||||
scikit-fmm = callPackage ../development/python-modules/scikit-fmm { };
|
scikit-fmm = callPackage ../development/python-modules/scikit-fmm { };
|
||||||
|
|
||||||
|
scikit-fuzzy = callPackage ../development/python-modules/scikit-fuzzy { };
|
||||||
|
|
||||||
scikitimage = callPackage ../development/python-modules/scikit-image { };
|
scikitimage = callPackage ../development/python-modules/scikit-image { };
|
||||||
|
|
||||||
scikitlearn = let args = { inherit (pkgs) gfortran glibcLocales; };
|
scikitlearn = let args = { inherit (pkgs) gfortran glibcLocales; };
|
||||||
|
|
Loading…
Reference in a new issue