3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/mlflow/default.nix

71 lines
1.3 KiB
Nix
Raw Normal View History

2020-01-06 23:59:25 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy27
2019-11-25 00:14:12 +00:00
, 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";
2020-01-06 23:59:25 +00:00
disabled = isPy27;
2019-11-25 00:14:12 +00:00
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 ];
};
}