summary refs log tree commit diff
path: root/pkgs/development/python-modules/rope/default.nix
blob: 21d5886efe214e1d34ec5b6dbc03e8c62101b34f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, buildPythonPackage, fetchPypi, fetchpatch, nose }:

buildPythonPackage rec {
  pname = "rope";
  version = "0.18.0";

  src = fetchPypi {
    inherit pname version;
    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
    NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
  '';

  meta = with lib; {
    description = "Python refactoring library";
    homepage = "https://github.com/python-rope/rope";
    maintainers = with maintainers; [ goibhniu ];
    license = licenses.gpl3Plus;
  };
}