about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mlrose/default.nix
blob: c3c7c55f292d948f317a208595ee8526ea37a9c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, isPy27, buildPythonPackage, fetchPypi, scikitlearn }:

buildPythonPackage rec {
  pname = "mlrose";
  version = "1.3.0";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "cec83253bf6da67a7fb32b2c9ae13e9dbc6cfbcaae2aa3107993e69e9788f15e";
  };

  propagatedBuildInputs = [ scikitlearn ];

  postPatch = ''
    sed -i 's,sklearn,scikit-learn,g' setup.py
  '';

  meta = with lib; {
    description = "Machine Learning, Randomized Optimization and SEarch";
    homepage    = "https://github.com/gkhayes/mlrose";
    license     = licenses.bsd3;
    maintainers = with maintainers; [ abbradar ];
  };
}