about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/embedded/fpga/tinyprog/default.nix
blob: e5a448b6fb3d3ca7353e98e8a582eb574b47f524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ 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}";

  src = fetchFromGitHub {
    owner = "tinyfpga";
    repo = "TinyFPGA-Bootloader";
    rev = "97f6353540bf7c0d27f5612f202b48f41da75299";
    sha256 = "0zbrvvb957z2lwbfd39ixqdsnd2w4wfjirwkqdrqm27bjz308731";
  };

  sourceRoot = "${src.name}/programmer";

  propagatedBuildInputs = [
    pyserial
    jsonmerge
    intelhex
    tqdm
    six
    packaging
    setuptools
    pyusb
  ];

  nativeBuildInputs = [ setuptools-scm ];

  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 = with maintainers; [ emily ];
    license = licenses.asl20;
  };
}