Created
August 4, 2020 10:11
-
-
Save tbenst/0a633bd85129748de1fba7186882df20 to your computer and use it in GitHub Desktop.
mach-nix derivation for deeplabcut
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
mach-nix = import (builtins.fetchGit { | |
url = "https://github.com/DavHau/mach-nix/"; | |
ref = "2.1.1"; | |
}); | |
in mach-nix.buildPythonPackage rec { | |
pname = "deeplabcut"; | |
version = "v2.2bb7"; | |
src = builtins.fetchGit{ | |
url = "https://github.com/DeepLabCut/DeepLabCut"; | |
ref = "master"; | |
rev = "c98f0d308636be5c4feaea4a35e77c2d974aa710"; | |
}; | |
# doCheck = false; | |
# doInstallCheck = false; | |
requirements = '' | |
bayesian-optimization | |
certifi | |
chardet | |
click | |
cython | |
easydict | |
filterpy | |
h5py | |
intel-openmp | |
imgaug | |
ipython | |
ipython-genutils | |
jupyter | |
numba | |
matplotlib | |
moviepy<=1.0.1 | |
numpy==1.16.4 | |
opencv-python | |
pandas>=1.0.1 | |
patsy | |
python-dateutil | |
pyyaml | |
requests | |
# ruamel.yaml>=0.15.0 | |
setuptools | |
scikit-image | |
scikit-learn | |
scipy>=1.4 | |
Shapely | |
six | |
statsmodels>=0.11 | |
tables | |
tensorpack | |
tensorflow-gpu==1.13.1 | |
tqdm | |
wheel | |
wxpython<4.1.0 | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment