2017-09-05 09:16:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2020-11-29 14:04:28 +00:00
|
|
|
, fetchFromGitHub
|
2017-09-05 09:16:41 +00:00
|
|
|
, docutils
|
|
|
|
, requests
|
2020-08-29 07:49:33 +00:00
|
|
|
, pytest
|
2017-09-05 09:16:41 +00:00
|
|
|
, testpath
|
|
|
|
, responses
|
2020-05-09 09:17:42 +00:00
|
|
|
, flit-core
|
2022-01-03 19:43:12 +00:00
|
|
|
, tomli
|
|
|
|
, tomli-w
|
2017-09-05 09:16:41 +00: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";
|
2022-01-03 19:43:12 +00:00
|
|
|
version = "3.6.0";
|
2020-11-29 15:00:54 +00:00
|
|
|
format = "pyproject";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2020-11-29 14:04:28 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "takluyver";
|
|
|
|
repo = "flit";
|
|
|
|
rev = version;
|
2022-01-03 19:43:12 +00:00
|
|
|
sha256 = "sha256-D3q/1g6njrrmizooGmzNd9g2nKs00dMGj9jrrv3Y6HQ=";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
2020-11-29 15:00:54 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
flit-core
|
|
|
|
];
|
|
|
|
|
2020-05-09 09:17:42 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
docutils
|
|
|
|
requests
|
|
|
|
flit-core
|
2022-01-03 19:43:12 +00:00
|
|
|
tomli
|
|
|
|
tomli-w
|
2020-05-09 09:17:42 +00:00
|
|
|
];
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2020-08-29 07:49:33 +00:00
|
|
|
checkInputs = [ pytest testpath responses ];
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
# Disable test that needs some ini file.
|
2017-12-30 11:22:59 +00:00
|
|
|
# Disable test that wants hg
|
2017-09-05 09:16:41 +00:00
|
|
|
checkPhase = ''
|
2018-12-23 17:26:31 +00:00
|
|
|
HOME=$(mktemp -d) pytest -k "not test_invalid_classifier and not test_build_sdist"
|
2017-09-05 09:16:41 +00:00
|
|
|
'';
|
|
|
|
|
2019-09-26 21:09:03 +00:00
|
|
|
meta = with lib; {
|
2017-09-05 09:16:41 +00:00
|
|
|
description = "A simple packaging tool for simple packages";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/takluyver/flit";
|
2019-09-26 21:09:03 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.fridh ];
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
2017-12-05 22:20:11 +00:00
|
|
|
}
|