python310Packages.scikit-bio: 0.5.6 -> 0.5.7

main
Sandro Jäckel 2 years ago
parent 4c3bcf7f4d
commit ff6e3bbcd8
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 9
      pkgs/development/python-modules/scikit-bio/default.nix

@ -5,6 +5,7 @@
, lockfile , lockfile
, cachecontrol , cachecontrol
, decorator , decorator
, h5py
, ipython , ipython
, matplotlib , matplotlib
, natsort , natsort
@ -19,18 +20,18 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.5.6"; version = "0.5.7";
pname = "scikit-bio"; pname = "scikit-bio";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "48b73ec53ce0ff2c2e3e05f3cfcf93527c1525a8d3e9dd4ae317b4219c37f0ea"; sha256 = "sha256-Y0PKDGIeL8xdHAQsi+MgBmTFMllWqDvqdRzxvMddHak=";
}; };
buildInputs = [ cython ]; nativeBuildInputs = [ cython ];
checkInputs = [ coverage ]; checkInputs = [ coverage ];
propagatedBuildInputs = [ lockfile cachecontrol decorator ipython matplotlib natsort numpy pandas scipy hdmedians scikit-learn ]; propagatedBuildInputs = [ lockfile cachecontrol decorator ipython matplotlib natsort numpy pandas scipy h5py hdmedians scikit-learn ];
# cython package not included for tests # cython package not included for tests
doCheck = false; doCheck = false;

Loading…
Cancel
Save