2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2020-12-07 07:45:13 +00:00
|
|
|
, fetchFromGitHub
|
2020-04-24 23:36:52 +00:00
|
|
|
, docutils
|
|
|
|
, requests
|
2022-04-27 09:35:20 +00:00
|
|
|
, pytestCheckHook
|
2020-04-24 23:36:52 +00:00
|
|
|
, testpath
|
|
|
|
, responses
|
2020-06-02 18:00:15 +00:00
|
|
|
, flit-core
|
2022-01-26 04:04:25 +00:00
|
|
|
, tomli-w
|
2020-04-24 23:36:52 +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";
|
2023-08-10 07:59:29 +00:00
|
|
|
version = "3.9.0";
|
2020-12-07 07:45:13 +00:00
|
|
|
format = "pyproject";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-12-07 07:45:13 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "takluyver";
|
|
|
|
repo = "flit";
|
|
|
|
rev = version;
|
2023-08-10 07:59:29 +00:00
|
|
|
hash = "sha256-yl2+PcKr7xRW4oIBWl+gzh/nKhSNu5GH9fWKRGgaNHU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-12-07 07:45:13 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
flit-core
|
|
|
|
];
|
|
|
|
|
2020-06-02 18:00:15 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
docutils
|
|
|
|
requests
|
|
|
|
flit-core
|
2022-01-26 04:04:25 +00:00
|
|
|
tomli-w
|
2020-06-02 18:00:15 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook testpath responses ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
disabledTests = [
|
|
|
|
# needs some ini file.
|
|
|
|
"test_invalid_classifier"
|
2023-05-24 13:37:59 +00:00
|
|
|
# calls pip directly. disabled for PEP 668
|
|
|
|
"test_install_data_dir"
|
|
|
|
"test_install_module_pep621"
|
|
|
|
"test_symlink_data_dir"
|
|
|
|
"test_symlink_module_pep621"
|
2022-04-27 09:35:20 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2023-08-10 07:59:29 +00:00
|
|
|
changelog = "https://github.com/pypa/flit/blob/${version}/doc/history.rst";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A simple packaging tool for simple packages";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "flit";
|
2022-04-27 09:35:20 +00:00
|
|
|
homepage = "https://github.com/pypa/flit";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|