python2.pkgs.mkrose: mark as broken
It supports only Python 3 now.
This commit is contained in:
parent
0c02ecaea2
commit
2dfb002a9b
1 changed files with 2 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, scikitlearn }:
|
{ stdenv, isPy27, buildPythonPackage, fetchPypi, scikitlearn }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "mlrose";
|
pname = "mlrose";
|
||||||
version = "1.2.0";
|
version = "1.2.0";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
|
Loading…
Reference in a new issue