mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 02:37:54 +00:00
python37.pkgs.rope: ignore broken type hinting tests
This commit is contained in:
parent
439bf86ca9
commit
bb32e2bd3d
@ -1,4 +1,4 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rope";
|
||||
@ -9,6 +9,12 @@ buildPythonPackage rec {
|
||||
sha256 = "a108c445e1cd897fe19272ab7877d172e7faf3d4148c80e7d20faba42ea8f7b2";
|
||||
};
|
||||
|
||||
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 stdenv.lib; {
|
||||
description = "Python refactoring library";
|
||||
homepage = https://github.com/python-rope/rope;
|
||||
|
Loading…
Reference in New Issue
Block a user