initial commit
This commit is contained in:
commit
e3b0136650
9 changed files with 245 additions and 0 deletions
38
package/pyjoulescope-ui/default.nix
Normal file
38
package/pyjoulescope-ui/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue