summary refs log tree commit diff
path: root/pkgs/development/tools/misc/tinyprog/default.nix
blob: 10d067e2c6189b8f898b7058a8a4c8878ec0bfd0 (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
41
42
{ lib
, python3Packages
, fetchFromGitHub
}:

with python3Packages; buildPythonApplication rec {
  pname = "tinyprog";
  # `python setup.py --version` from repo checkout
  version = "1.0.24.dev99+ga77f828";

  src = fetchFromGitHub {
    owner = "tinyfpga";
    repo = "TinyFPGA-Bootloader";
    rev = "a77f828d3d6ae077e323ec96fc3925efab5aa9d7";
    sha256 = "0jg47q0n1qkdrzri2q6n9a7czicj0qk58asz0xhzkajx1k9z3g5q";
  };

  sourceRoot = "source/programmer";

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

  nativeBuildInputs = [ setuptools_scm ];

  preBuild = ''
    export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
  '';

  meta = with lib; {
    homepage = https://github.com/tinyfpga/TinyFPGA-Bootloader/tree/master/programmer;
    description = "Programmer for FPGA boards using the TinyFPGA USB Bootloader";
    maintainers = with maintainers; [ emily ];
    license = licenses.asl20;
  };
}