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

25 lines
652 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, nose }:
2017-11-15 15:48:00 +01:00
buildPythonPackage rec {
pname = "rope";
2018-08-13 09:32:25 +02:00
version = "0.11.0";
2017-11-15 15:48:00 +01:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:32:25 +02:00
sha256 = "a108c445e1cd897fe19272ab7877d172e7faf3d4148c80e7d20faba42ea8f7b2";
2017-11-15 15:48:00 +01: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 15:48:00 +01:00
meta = with stdenv.lib; {
description = "Python refactoring library";
homepage = https://github.com/python-rope/rope;
maintainers = with maintainers; [ goibhniu ];
license = licenses.gpl2;
};
}