mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
Merge pull request #117231 from dotlambda/rope-fix
python39Packages.rope: fix tests
This commit is contained in:
commit
238fba1b71
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast, nose }:
|
||||
{ lib, buildPythonPackage, fetchPypi, fetchpatch, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rope";
|
||||
@ -9,6 +9,15 @@ buildPythonPackage rec {
|
||||
sha256 = "786b5c38c530d4846aa68a42604f61b4e69a493390e3ca11b88df0fbfdc3ed04";
|
||||
};
|
||||
|
||||
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
|
||||
@ -19,6 +28,6 @@ buildPythonPackage rec {
|
||||
description = "Python refactoring library";
|
||||
homepage = "https://github.com/python-rope/rope";
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user