python2.pkgs.mkrose: mark as broken

It supports only Python 3 now.
This commit is contained in:
Nikolay Amiantov 2019-10-03 18:24:25 +03:00
parent 0c02ecaea2
commit 2dfb002a9b

View File

@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, scikitlearn }:
{ stdenv, isPy27, buildPythonPackage, fetchPypi, scikitlearn }:
buildPythonPackage rec {
pname = "mlrose";
version = "1.2.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;