mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-03 10:57:02 +00:00
pythonPackages.mlflow: init at 1.4.0
This commit is contained in:
parent
ecdff9225b
commit
94f62695d1
2 changed files with 71 additions and 0 deletions
69
pkgs/development/python-modules/mlflow/default.nix
Normal file
69
pkgs/development/python-modules/mlflow/default.nix
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, alembic
|
||||||
|
, click
|
||||||
|
, cloudpickle
|
||||||
|
, requests
|
||||||
|
, six
|
||||||
|
, flask
|
||||||
|
, numpy
|
||||||
|
, pandas
|
||||||
|
, python-dateutil
|
||||||
|
, protobuf
|
||||||
|
, GitPython
|
||||||
|
, pyyaml
|
||||||
|
, querystring_parser
|
||||||
|
, simplejson
|
||||||
|
, docker
|
||||||
|
, databricks-cli
|
||||||
|
, entrypoints
|
||||||
|
, sqlparse
|
||||||
|
, sqlalchemy
|
||||||
|
, gorilla
|
||||||
|
, gunicorn
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "mlflow";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "9116d82be380c32fa465049d14b217c4c200ad11614f4c6674e6b524b2935206";
|
||||||
|
};
|
||||||
|
|
||||||
|
# run into https://stackoverflow.com/questions/51203641/attributeerror-module-alembic-context-has-no-attribute-config
|
||||||
|
# also, tests use conda so can't run on NixOS without buildFHSUserEnv
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
alembic
|
||||||
|
click
|
||||||
|
cloudpickle
|
||||||
|
requests
|
||||||
|
six
|
||||||
|
flask
|
||||||
|
numpy
|
||||||
|
pandas
|
||||||
|
python-dateutil
|
||||||
|
protobuf
|
||||||
|
GitPython
|
||||||
|
pyyaml
|
||||||
|
querystring_parser
|
||||||
|
simplejson
|
||||||
|
docker
|
||||||
|
databricks-cli
|
||||||
|
entrypoints
|
||||||
|
sqlparse
|
||||||
|
sqlalchemy
|
||||||
|
gorilla
|
||||||
|
gunicorn
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/mlflow/mlflow";
|
||||||
|
description = "Open source platform for the machine learning lifecycle";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ tbenst ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2929,6 +2929,8 @@ in {
|
||||||
|
|
||||||
mlrose = callPackage ../development/python-modules/mlrose { };
|
mlrose = callPackage ../development/python-modules/mlrose { };
|
||||||
|
|
||||||
|
mlflow = callPackage ../development/python-modules/mlflow { };
|
||||||
|
|
||||||
mt-940 = callPackage ../development/python-modules/mt-940 { };
|
mt-940 = callPackage ../development/python-modules/mt-940 { };
|
||||||
|
|
||||||
mwlib = callPackage ../development/python-modules/mwlib { };
|
mwlib = callPackage ../development/python-modules/mwlib { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue