nixpkgs/pkgs/development/python-modules/rope/default.nix
2018-08-25 07:38:23 +02:00

19 lines
458 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rope";
version = "0.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "a108c445e1cd897fe19272ab7877d172e7faf3d4148c80e7d20faba42ea8f7b2";
};
meta = with stdenv.lib; {
description = "Python refactoring library";
homepage = https://github.com/python-rope/rope;
maintainers = with maintainers; [ goibhniu ];
license = licenses.gpl2;
};
}