nixpkgs/pkgs/development/python-modules/rope/default.nix

25 lines
669 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast, nose }:
2017-11-15 14:48:00 +00:00
buildPythonPackage rec {
pname = "rope";
2020-06-06 06:47:30 +00:00
version = "0.17.0";
2017-11-15 14:48:00 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:30 +00:00
sha256 = "658ad6705f43dcf3d6df379da9486529cf30e02d9ea14c5682aa80eb33b649e1";
2017-11-15 14:48:00 +00:00
};
checkInputs = [ nose ];
checkPhase = ''
# tracked upstream here https://github.com/python-rope/rope/issues/247
NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
'';
2017-11-15 14:48:00 +00:00
meta = with stdenv.lib; {
description = "Python refactoring library";
2020-03-20 18:00:52 +00:00
homepage = "https://github.com/python-rope/rope";
2017-11-15 14:48:00 +00:00
maintainers = with maintainers; [ goibhniu ];
license = licenses.gpl2;
};
}