Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
620 B
Nix
31 lines
620 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
flit,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flit-core";
|
|
inherit (flit) version;
|
|
format = "pyproject";
|
|
|
|
inherit (flit) src patches;
|
|
|
|
postPatch = "cd 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;
|
|
teams = [ teams.python ];
|
|
};
|
|
}
|