pythonPackages.softlayer: disable python2

ERROR: Package 'SoftLayer' requires a different Python: 2.7.18 not in '>=3.5'
This commit is contained in:
Jonathan Ringer 2020-05-04 10:55:41 -07:00 committed by Jon
parent b5124d35af
commit 91ad6f176a

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, ptable
, click
, requests
@ -17,6 +18,7 @@
buildPythonPackage rec {
pname = "softlayer-python";
version = "5.8.4";
disabled = isPy27;
propagatedBuildInputs = [ ptable click requests prompt_toolkit pygments urllib3 ];