python3Packages.flit: 1.0 -> 1.2.1 (#51674)

This commit is contained in:
Christopher Ostrouchov 2018-12-23 12:26:31 -05:00 committed by Robert Schütz
parent 0b517e33de
commit 142687c5c7

View File

@ -28,14 +28,15 @@ buildPythonPackage rec {
};
disabled = !isPy3k;
propagatedBuildInputs = [ docutils requests requests_download pytoml ] ++ lib.optional (pythonOlder "3.6") zipfile36;
propagatedBuildInputs = [ docutils requests requests_download pytoml ]
++ lib.optional (pythonOlder "3.6") zipfile36;
checkInputs = [ pytest testpath responses ];
# Disable test that needs some ini file.
# Disable test that wants hg
checkPhase = ''
py.test -k "not test_invalid_classifier and not test_build_sdist"
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
'';
meta = {