depot/third_party/nixpkgs/pkgs/development/python-modules/mlxtend/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

51 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, pytestCheckHook
, scipy
, numpy
, scikit-learn
, pandas
, matplotlib
, joblib
}:
buildPythonPackage rec {
pname = "mlxtend";
version = "0.20.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "rasbt";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-ECDO3nc9IEgmZNdSA70BzOODOi0wnisI00F2Dxzdz+M=";
};
checkInputs = [ pytestCheckHook ];
# image tests download files over the network
pytestFlagsArray = [ "-sv" "--ignore=mlxtend/image" ];
# Fixed in master, but failing in release version
# see: https://github.com/rasbt/mlxtend/pull/721
disabledTests = [ "test_variance_explained_ratio" ];
propagatedBuildInputs = [
scipy
numpy
scikit-learn
pandas
matplotlib
joblib
];
meta = with lib; {
description = "A library of Python tools and extensions for data science";
homepage = "https://github.com/rasbt/mlxtend";
license= licenses.bsd3;
maintainers = with maintainers; [ evax ];
platforms = platforms.unix;
# incompatible with nixpkgs scikit-learn version
broken = true;
};
}