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

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

30 lines
635 B
Nix
Raw Normal View History

2020-05-09 10:34:00 +01:00
{ lib
, buildPythonPackage
, flit
}:
buildPythonPackage rec {
pname = "flit-core";
2022-03-27 19:10:09 +01:00
inherit (flit) version;
2020-05-09 10:34:00 +01:00
format = "pyproject";
2020-11-29 14:04:28 +00:00
inherit (flit) src patches;
sourceRoot = "${src.name}/flit_core";
# Tests are run in the "flit" package.
doCheck = false;
2020-05-09 10:34:00 +01:00
passthru.tests = {
inherit flit;
};
meta = with lib; {
2020-05-09 10:34:00 +01:00
description = "Distribution-building parts of Flit. See flit package for more information";
2022-03-27 19:08:59 +01:00
homepage = "https://github.com/pypa/flit";
changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst";
license = licenses.bsd3;
maintainers = teams.python.members;
2020-05-09 10:34:00 +01:00
};
2020-06-01 09:59:41 +01:00
}