2021-03-22 13:53:19 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch, nose }:
|
2017-11-15 14:48:00 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rope";
|
2020-11-10 00:17:35 +00:00
|
|
|
version = "0.18.0";
|
2017-11-15 14:48:00 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-10 00:17:35 +00:00
|
|
|
sha256 = "786b5c38c530d4846aa68a42604f61b4e69a493390e3ca11b88df0fbfdc3ed04";
|
2017-11-15 14:48:00 +00:00
|
|
|
};
|
|
|
|
|
2021-03-22 13:53:19 +00:00
|
|
|
patches = [
|
|
|
|
# Python 3.9 ast changes
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/python-rope/rope/pull/333.patch";
|
|
|
|
excludes = [ ".github/workflows/main.yml" ];
|
|
|
|
sha256 = "1gq7n1zs18ndmv0p8jg1h5pawabi1m9m9z2w5hgidvqmpmcziky0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-11-27 11:56:30 +00:00
|
|
|
checkInputs = [ nose ];
|
|
|
|
checkPhase = ''
|
|
|
|
# tracked upstream here https://github.com/python-rope/rope/issues/247
|
|
|
|
NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-15 14:48:00 +00:00
|
|
|
description = "Python refactoring library";
|
2020-03-20 18:00:52 +00:00
|
|
|
homepage = "https://github.com/python-rope/rope";
|
2017-11-15 14:48:00 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2021-03-22 13:53:19 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-11-15 14:48:00 +00:00
|
|
|
};
|
|
|
|
}
|