38 lines
611 B
Nix
38 lines
611 B
Nix
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
|
|
];
|
|
}
|