Files
nixpkgs/pkgs/by-name/ti/tinyprog/package.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

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 = {
homepage = "https://github.com/tinyfpga/TinyFPGA-Bootloader/tree/master/programmer";
description = "Programmer for FPGA boards using the TinyFPGA USB Bootloader";
mainProgram = "tinyprog";
maintainers = [ ];
license = lib.licenses.asl20;
};
}