From 142687c5c77299785f410dfed96817747a9d2401 Mon Sep 17 00:00:00 2001 From: Christopher Ostrouchov Date: Sun, 23 Dec 2018 12:26:31 -0500 Subject: [PATCH] python3Packages.flit: 1.0 -> 1.2.1 (#51674) --- pkgs/development/python-modules/flit/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/flit/default.nix b/pkgs/development/python-modules/flit/default.nix index f0f7ee84bce1..7c64d9bd1830 100644 --- a/pkgs/development/python-modules/flit/default.nix +++ b/pkgs/development/python-modules/flit/default.nix @@ -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 = {