mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.scikit-bio: init at 0.5.4
This commit is contained in:
parent
0f8ccbf259
commit
4f25a13861
2 changed files with 57 additions and 0 deletions
55
pkgs/development/python-modules/scikit-bio/default.nix
Normal file
55
pkgs/development/python-modules/scikit-bio/default.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cython
|
||||
, lockfile
|
||||
, cachecontrol
|
||||
, decorator
|
||||
, ipython
|
||||
, matplotlib
|
||||
, natsort
|
||||
, numpy
|
||||
, pandas
|
||||
, scipy
|
||||
, hdmedians
|
||||
, scikitlearn
|
||||
, pytest
|
||||
, coverage
|
||||
, python
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.5.4";
|
||||
pname = "scikit-bio";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3243f1995ef24643c09ff4d9391a79528aadd8232e5aa5d66c38d7b2e0c92f24";
|
||||
};
|
||||
|
||||
buildInputs = [ cython ];
|
||||
checkInputs = [ coverage ];
|
||||
propagatedBuildInputs = [ lockfile cachecontrol decorator ipython matplotlib natsort numpy pandas scipy hdmedians scikitlearn ];
|
||||
|
||||
# remove on when version > 0.5.4
|
||||
postPatch = ''
|
||||
sed -i "s/numpy >= 1.9.2, < 1.14.0/numpy/" setup.py
|
||||
sed -i "s/pandas >= 0.19.2, < 0.23.0/pandas/" setup.py
|
||||
'';
|
||||
|
||||
# cython package not included for tests
|
||||
doCheck = false;
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m skbio.test
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://scikit-bio.org/;
|
||||
description = "Data structures, algorithms and educational resources for bioinformatics";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -11715,6 +11715,8 @@ in {
|
|||
inherit (pkgs) gfortran glibcLocales;
|
||||
};
|
||||
|
||||
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
||||
|
||||
scp = callPackage ../development/python-modules/scp {};
|
||||
|
||||
scripttest = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue