python3Packages.rope: 0.14.0 -> 0.16.0

This commit is contained in:
Ben Darwin 2020-03-20 14:00:52 -04:00 committed by Jon
parent ede6944f4f
commit 5df826fb11

View file

@ -2,13 +2,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "rope"; pname = "rope";
version = "0.14.0"; version = "0.16.0";
disabled = pythonAtLeast "3.8"; # 0.17 should support Python 3.8 disabled = pythonAtLeast "3.8"; # 0.17 should support Python 3.8
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1bwayj0hh459s3yh0sdrxksr9wfilgi3a49izfaj06kvgyladif5"; sha256 = "1zlxdrs6ww2hm41izz67h67z9dkm0rlgw8m04vygaip0q91030yj";
}; };
checkInputs = [ nose ]; checkInputs = [ nose ];
@ -19,7 +19,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Python refactoring library"; description = "Python refactoring library";
homepage = https://github.com/python-rope/rope; homepage = "https://github.com/python-rope/rope";
maintainers = with maintainers; [ goibhniu ]; maintainers = with maintainers; [ goibhniu ];
license = licenses.gpl2; license = licenses.gpl2;
}; };