-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
59 lines (55 loc) · 2.31 KB
/
flake.nix
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
description = "Python dependencies of bridle that aren't in nixpkgs";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
(flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
python = pkgs.python3Packages;
in
{
formatter = pkgs.nixfmt-rfc-style;
packages = rec {
asammdf = python.callPackage ./packages/asammdf { inherit hdf5storage pyqtlet2; };
canalystii = python.callPackage ./packages/canalystii { };
doxmlparser = python.callPackage ./packages/doxmlparser { };
hdf5storage = python.callPackage ./packages/hdf5storage { };
gs-usb = python.callPackage ./packages/gs-usb { };
nixnet = python.callPackage ./packages/nixnet { };
pydebuggerconfig = python.callPackage ./packages/pydebuggerconfig { inherit pyedbglib; };
pyedbglib = python.callPackage ./packages/pyedbglib { };
pykitinfo = python.callPackage ./packages/pykitinfo { inherit pydebuggerconfig pyedbglib; };
pymcuprog = python.callPackage ./packages/pymcuprog { inherit pyedbglib; };
python-can = python.callPackage ./packages/python-can {
inherit
asammdf
canalystii
gs-usb
nixnet
python-can-remote
python-can-sontheim
python-ics
;
};
python-can-remote = python.callPackage ./packages/python-can-remote { };
python-can-sontheim = python.callPackage ./packages/python-can-sontheim { inherit python-can; };
python-ics = python.callPackage ./packages/python-ics { };
pyqtlet2 = python.callPackage ./packages/pyqtlet2 { };
sphinx8 = python.callPackage ./packages/sphinx8 { };
sphinx-tsn-theme = python.callPackage ./packages/sphinx-tsn-theme { };
sphinxcontrib-svg2pdfconverter = python.callPackage ./packages/sphinxcontrib-svg2pdfconverter { };
sphinx-csv-filter = python.callPackage ./packages/sphinx-csv-filter { };
sphinx-lint = python.callPackage ./packages/sphinx-lint { };
sphobjinv = python.callPackage ./packages/sphobjinv { };
};
}
));
}