2020-03-20 17:50:18 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast, nose }:
|
2017-11-15 15:48:00 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rope";
|
2020-03-20 19:00:52 +01:00
|
|
|
version = "0.16.0";
|
2017-11-15 15:48:00 +01:00
|
|
|
|
2020-03-20 17:50:18 +01:00
|
|
|
disabled = pythonAtLeast "3.8"; # 0.17 should support Python 3.8
|
|
|
|
|
2017-11-15 15:48:00 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-20 19:00:52 +01:00
|
|
|
sha256 = "1zlxdrs6ww2hm41izz67h67z9dkm0rlgw8m04vygaip0q91030yj";
|
2017-11-15 15:48:00 +01:00
|
|
|
};
|
|
|
|
|
2018-11-27 12:56:30 +01:00
|
|
|
checkInputs = [ nose ];
|
|
|
|
checkPhase = ''
|
|
|
|
# tracked upstream here https://github.com/python-rope/rope/issues/247
|
|
|
|
NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
|
|
|
|
'';
|
|
|
|
|
2017-11-15 15:48:00 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python refactoring library";
|
2020-03-20 19:00:52 +01:00
|
|
|
homepage = "https://github.com/python-rope/rope";
|
2017-11-15 15:48:00 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|