mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.rope: 0.10.2 -> 0.10.7
This commit is contained in:
parent
c0f08557b9
commit
3320d5f7a8
2 changed files with 19 additions and 18 deletions
18
pkgs/development/python-modules/rope/default.nix
Normal file
18
pkgs/development/python-modules/rope/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -17490,24 +17490,7 @@ in {
|
|||
|
||||
rootpy = callPackage ../development/python-modules/rootpy { };
|
||||
|
||||
rope = buildPythonPackage rec {
|
||||
version = "0.10.2";
|
||||
name = "rope-${version}";
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/r/rope/${name}.tar.gz";
|
||||
sha256 = "0rdlvp8h74qs49wz1hx6qy8mgp2ddwlfs7z13h9139ynq04a3z7z";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Python refactoring library";
|
||||
homepage = http://rope.sf.net;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
};
|
||||
rope = callPackage ../development/python-modules/rope { };
|
||||
|
||||
ropper = callPackage ../development/python-modules/ropper { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue