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
|
2022-03-27 18:12:44 +00:00
|
|
|
, pytestCheckHook
|
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-03-27 18:10:09 +00:00
|
|
|
version = "3.7.1";
|
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-03-27 18:10:09 +00:00
|
|
|
sha256 = "sha256-zKgaeK3fskz2TuHvIWlxBrdZIWfIJHhaqopZ3+V36wY=";
|
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
|
|
|
|
2022-03-27 18:12:44 +00:00
|
|
|
checkInputs = [ pytestCheckHook testpath responses ];
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2022-03-27 18:12:44 +00:00
|
|
|
disabledTests = [
|
|
|
|
# needs some ini file.
|
|
|
|
"test_invalid_classifier"
|
|
|
|
];
|
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";
|
2022-03-27 18:08:59 +00:00
|
|
|
homepage = "https://github.com/pypa/flit";
|
2019-09-26 21:09:03 +00:00
|
|
|
license = licenses.bsd3;
|
2022-03-27 18:09:47 +00:00
|
|
|
maintainers = with maintainers; [ fridh SuperSandro2000 ];
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
2017-12-05 22:20:11 +00:00
|
|
|
}
|