Skip to content

Commit

Permalink
python38Packages.rope: disable for Python>=3.8
Browse files Browse the repository at this point in the history
- browsing the github page suggests the upcoming 0.17 release should support 3.8
  • Loading branch information
bcdarwin committed Mar 23, 2020
1 parent d1303f1 commit 3d0410e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/rope/default.nix
@@ -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";
Expand Down

0 comments on commit 3d0410e

Please sign in to comment.