about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rope/default.nix
blob: db08ad2a5c03c2c8816a2e0a4ae10773c0144768 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1lc01pjn0yr6yqcpbf6kk170zg8zhnyzj8kqlsch1mag0g9dz7m0";
  };

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