python3Packages.flit: fix tests and packaging (#69546)

* python3Packages.flit: fix tests

* python: fix flit setup hook
This commit is contained in:
Jon 2019-09-26 14:09:03 -07:00 committed by zimbatm
parent e6b93257b0
commit 28af6ac647
2 changed files with 8 additions and 8 deletions

View File

@ -3,9 +3,9 @@ echo "Sourcing flit-build-hook"
flitBuildPhase () {
echo "Executing flitBuildPhase"
preBuild
runHook preBuild
@pythonInterpreter@ -m flit build --format wheel
postBuild
runHook postBuild
echo "Finished executing flitBuildPhase"
}

View File

@ -7,7 +7,7 @@
, requests_download
, zipfile36
, pythonOlder
, pytest
, pytest_4
, testpath
, responses
, pytoml
@ -21,17 +21,17 @@
buildPythonPackage rec {
pname = "flit";
version = "1.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "6f6f0fb83c51ffa3a150fa41b5ac118df9ea4a87c2c06dff4ebf9adbe7b52b36";
};
disabled = !isPy3k;
propagatedBuildInputs = [ docutils requests requests_download pytoml ]
++ lib.optional (pythonOlder "3.6") zipfile36;
checkInputs = [ pytest testpath responses ];
checkInputs = [ pytest_4 testpath responses ];
# Disable test that needs some ini file.
# Disable test that wants hg
@ -39,10 +39,10 @@ buildPythonPackage rec {
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
'';
meta = {
meta = with lib; {
description = "A simple packaging tool for simple packages";
homepage = https://github.com/takluyver/flit;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.fridh ];
license = licenses.bsd3;
maintainers = [ maintainers.fridh ];
};
}