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
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
with python3Packages;
|
|
buildPythonApplication rec {
|
|
pname = "tinyprog";
|
|
# `python setup.py --version` from repo checkout
|
|
version = "1.0.24.dev114+g${lib.substring 0 7 src.rev}";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tinyfpga";
|
|
repo = "TinyFPGA-Bootloader";
|
|
rev = "97f6353540bf7c0d27f5612f202b48f41da75299";
|
|
sha256 = "0zbrvvb957z2lwbfd39ixqdsnd2w4wfjirwkqdrqm27bjz308731";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/programmer";
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
pyserial
|
|
jsonmerge
|
|
intelhex
|
|
tqdm
|
|
six
|
|
packaging
|
|
setuptools # pkg_resources is imported during runtime
|
|
pyusb
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tinyfpga/TinyFPGA-Bootloader/tree/master/programmer";
|
|
description = "Programmer for FPGA boards using the TinyFPGA USB Bootloader";
|
|
mainProgram = "tinyprog";
|
|
maintainers = [ ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|