diff options
| author | Michele Guerini Rocco <rnhmjoj@users.noreply.github.com> | 2020-03-23 13:57:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-23 13:57:52 +0100 |
| commit | cbc357141e4828141c9ba2e6c44a84be9fabeabe (patch) | |
| tree | 5e91b2b275b8cfd62730fea0a15c3216f84bc2fb | |
| parent | obs-studio: update from version 25.0.0 to 25.0.2 (diff) | |
| parent | python38Packages.rope: disable for Python>=3.8 (diff) | |
| download | nixpkgs-cbc357141e4828141c9ba2e6c44a84be9fabeabe.tar.gz | |
Merge pull request #83009 from bcdarwin/disable-python38-rope
python38Packages.rope: disable for Python>=3.8
| -rw-r--r-- | pkgs/development/python-modules/rope/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/rope/default.nix b/pkgs/development/python-modules/rope/default.nix index 66340f917704..c14b4f364075 100644 --- a/pkgs/development/python-modules/rope/default.nix +++ b/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"; |
