pythonPackages.uncompyle6: 3.2.6 -> 3.3.2

Changes:
https://github.com/rocky/python-uncompyle6/blob/release-python-3.3.2/NEWS.md
This commit is contained in:
Renaud 2019-05-14 20:49:57 +02:00 committed by GitHub
parent 6f88e9a59b
commit d1bd8a983f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,11 +11,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "uncompyle6"; pname = "uncompyle6";
version = "3.2.6"; version = "3.3.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "3a40f4f4b8b02a8687bd98c598980bed38a4770e3de253847eafed4b7167d07f"; sha256 = "096k1hipxxnsra5k86v6sm7bk1g0kb1f75yb44nvgf566kd6p119";
}; };
checkInputs = [ nose pytest hypothesis six ]; checkInputs = [ nose pytest hypothesis six ];
@ -23,8 +23,9 @@ buildPythonPackage rec {
# six import errors (yet it is supplied...) # six import errors (yet it is supplied...)
checkPhase = '' checkPhase = ''
pytest ./pytest --ignore=pytest/test_build_const_key_map.py \ runHook preCheck
--ignore=pytest/test_grammar.py pytest ./pytest --ignore=pytest/test_function_call.py
runHook postCheck
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {