pythonPackages.rope: 0.10.2 -> 0.10.7

This commit is contained in:
Joerg Thalheim
2017-11-15 14:48:00 +00:00
parent c0f08557b9
commit 3320d5f7a8
2 changed files with 19 additions and 18 deletions

View 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;
};
}