python38Packages.rope: disable for Python>=3.8

- browsing the github page suggests the upcoming 0.17 release should support 3.8
This commit is contained in:
Ben Darwin 2020-03-20 12:50:18 -04:00
parent d1303f10e9
commit 3d0410e769

View file

@ -1,9 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, nose }:
{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast, nose }:
buildPythonPackage rec {
pname = "rope";
version = "0.14.0";
disabled = pythonAtLeast "3.8"; # 0.17 should support Python 3.8
src = fetchPypi {
inherit pname version;
sha256 = "1bwayj0hh459s3yh0sdrxksr9wfilgi3a49izfaj06kvgyladif5";