mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
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:
parent
d1303f10e9
commit
3d0410e769
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue