core/pkgs/by-name/py/python/python-modules/flit-core/default.nix
2024-05-13 11:34:52 -04:00

30 lines
641 B
Nix

{ lib
, buildPythonPackage
, flit
}:
buildPythonPackage rec {
pname = "flit-core";
inherit (flit) version;
format = "pyproject";
inherit (flit) src patches;
sourceRoot = "${src.name}/flit_core";
# Tests are run in the "flit" package.
doCheck = false;
# passthru.tests = {
# inherit flit;
# };
meta = with lib; {
description = "Distribution-building parts of Flit. See flit package for more information";
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;
};
}