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
64 lines
1.0 KiB
Nix
64 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "fromager";
|
|
version = "0.59.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-wheel-build";
|
|
repo = "fromager";
|
|
tag = version;
|
|
hash = "sha256-aKoZKpzgJ3e5JRYSSeLmLlji1Fj8omxvwGZfNXDOhLs=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
click
|
|
elfdeps
|
|
html5lib
|
|
packaging
|
|
pkginfo
|
|
psutil
|
|
pydantic
|
|
pyproject-hooks
|
|
pyyaml
|
|
requests
|
|
requests-mock
|
|
resolvelib
|
|
rich
|
|
setuptools
|
|
stevedore
|
|
tomlkit
|
|
tqdm
|
|
virtualenv
|
|
wheel
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
requests-mock
|
|
twine
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"fromager"
|
|
];
|
|
|
|
meta = {
|
|
description = "Wheel maker";
|
|
homepage = "https://pypi.org/project/fromager/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ booxter ];
|
|
mainProgram = "fromager";
|
|
};
|
|
}
|