nixpkgs/pkgs/development/python-modules/rope/default.nix

34 lines
922 B
Nix
Raw Normal View History

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";
version = "0.18.0";
2017-11-15 14:48:00 +00:00
src = fetchPypi {
inherit pname version;
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";
})
];
checkInputs = [ nose ];
checkPhase = ''
# tracked upstream here https://github.com/python-rope/rope/issues/247
NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
'';
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
};
}