2017-09-05 11:16:41 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
, docutils
|
|
|
|
, requests
|
|
|
|
, requests_download
|
|
|
|
, zipfile36
|
|
|
|
, pythonOlder
|
2019-09-26 23:09:03 +02:00
|
|
|
, pytest_4
|
2017-09-05 11:16:41 +02:00
|
|
|
, testpath
|
|
|
|
, responses
|
2017-12-30 12:22:59 +01:00
|
|
|
, pytoml
|
2020-05-09 11:17:42 +02:00
|
|
|
, flit-core
|
2017-09-05 11:16:41 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
# Flit is actually an application to build universal wheels.
|
|
|
|
# It requires Python 3 and should eventually be moved outside of
|
|
|
|
# python-packages.nix. When it will be used to build wheels,
|
|
|
|
# care should be taken that there is no mingling of PYTHONPATH.
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "flit";
|
2020-05-09 11:17:42 +02:00
|
|
|
version = "2.3.0";
|
2019-09-26 23:09:03 +02:00
|
|
|
disabled = !isPy3k;
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:17:42 +02:00
|
|
|
sha256 = "017012b809ec489918afd68af7a70bd7c8c770c87b60159d875c126866e97a4b";
|
2017-09-05 11:16:41 +02:00
|
|
|
};
|
|
|
|
|
2020-05-09 11:17:42 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
docutils
|
|
|
|
requests
|
|
|
|
requests_download
|
|
|
|
pytoml
|
|
|
|
flit-core
|
|
|
|
] ++ lib.optionals (pythonOlder "3.6") [
|
|
|
|
zipfile36
|
|
|
|
];
|
2017-09-05 11:16:41 +02:00
|
|
|
|
2019-09-26 23:09:03 +02:00
|
|
|
checkInputs = [ pytest_4 testpath responses ];
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
# Disable test that needs some ini file.
|
2017-12-30 12:22:59 +01:00
|
|
|
# Disable test that wants hg
|
2017-09-05 11:16:41 +02:00
|
|
|
checkPhase = ''
|
2018-12-23 18:26:31 +01:00
|
|
|
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
|
2017-09-05 11:16:41 +02:00
|
|
|
'';
|
|
|
|
|
2019-09-26 23:09:03 +02:00
|
|
|
meta = with lib; {
|
2017-09-05 11:16:41 +02:00
|
|
|
description = "A simple packaging tool for simple packages";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/takluyver/flit";
|
2019-09-26 23:09:03 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.fridh ];
|
2017-09-05 11:16:41 +02:00
|
|
|
};
|
2017-12-05 23:20:11 +01:00
|
|
|
}
|