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

25 lines
659 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonAtLeast, nose }:
2017-11-15 15:48:00 +01:00
buildPythonPackage rec {
pname = "rope";
version = "0.18.0";
2017-11-15 15:48:00 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "786b5c38c530d4846aa68a42604f61b4e69a493390e3ca11b88df0fbfdc3ed04";
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
'';
meta = with lib; {
2017-11-15 15:48:00 +01:00
description = "Python refactoring library";
2020-03-20 19:00:52 +01:00
homepage = "https://github.com/python-rope/rope";
2017-11-15 15:48:00 +01:00
maintainers = with maintainers; [ goibhniu ];
license = licenses.gpl2;
};
}