nixpkgs/pkgs/development/python-modules/flit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2020-11-29 14:04:28 +00:00
, fetchFromGitHub
, docutils
, requests
, pytestCheckHook
, testpath
, responses
2020-05-09 09:17:42 +00:00
, flit-core
2022-01-03 19:43:12 +00:00
, tomli
, tomli-w
}:
# 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";
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=";
};
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
];
checkInputs = [ pytestCheckHook testpath responses ];
disabledTests = [
# needs some ini file.
"test_invalid_classifier"
];
meta = with lib; {
description = "A simple packaging tool for simple packages";
2022-03-27 18:08:59 +00:00
homepage = "https://github.com/pypa/flit";
license = licenses.bsd3;
maintainers = with maintainers; [ fridh SuperSandro2000 ];
};
}