python2.pkgs.biopython: python2 no longer supported

This commit is contained in:
Frederik Rietdijk 2020-06-11 13:57:36 +02:00
parent 06ef649346
commit dcc4324df4

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, numpy
, isPy3k
}:
buildPythonPackage rec {
@ -13,6 +14,8 @@ buildPythonPackage rec {
sha256 = "fb1936e9ca9e7af8de1050e84375f23328e04b801063edf0ad73733494d8ec42";
};
disabled = !isPy3k;
propagatedBuildInputs = [ numpy ];
# Checks try to write to $HOME, which does not work with nix
doCheck = false;