initial commit

This commit is contained in:
Jonas Rabenstein 2025-09-30 12:07:41 +02:00
commit e3b0136650
9 changed files with 245 additions and 0 deletions

View file

@ -0,0 +1,38 @@
let
v."1.3.9" = "sha256-9UDZxeuSsaWreoFq6hhRub+72IvDavN5Y2tfgpBUwTE=";
in {
callPackage,
jetperch,
name ? "pyjoulescope-ui",
version ? "1.3.9",
hash ? v.${version} or "",
# dependencies
pyjoulescope-driver,
pyjls,
...
}: callPackage ../python.nix {
inherit name;
inherit jetperch;
inherit version;
inherit hash;
repo = "pyjoulescope_ui";
pydeps = py: with py; [
numpy
polib
pyside6
psutil
pyjls
pyopengl
pyqtgraph
pyside6-qtads
python-dateutil
qtpy
requests
appnope
fs
markdown
watchdog
pyjoulescope-driver
];
}