hifiscan: init at 1.5.2 (#285560)
This commit is contained in:
parent
6699e5f037
commit
936ae679c9
3 changed files with 56 additions and 0 deletions
28
pkgs/by-name/hi/hifiscan/package.nix
Normal file
28
pkgs/by-name/hi/hifiscan/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, python3Packages
|
||||
, fetchPypi
|
||||
}:
|
||||
let
|
||||
pname = "hifiscan";
|
||||
version = "1.5.2";
|
||||
hash = "sha256-8eystqjNdDP2X9beogRcsa+Wqu50uMHZv59jdc5GjUc=";
|
||||
in
|
||||
python3Packages.buildPythonApplication {
|
||||
inherit pname version;
|
||||
|
||||
pythonPath = with python3Packages; [ eventkit numpy sounddevice pyqt6 pyqt6-sip pyqtgraph ];
|
||||
|
||||
dontUseSetuptoolsCheck = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version hash;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/erdewit/HiFiScan";
|
||||
description = "Optimize the audio quality of your loudspeakers";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ cab404 ];
|
||||
mainProgram = "hifiscan";
|
||||
};
|
||||
}
|
26
pkgs/development/python-modules/eventkit/default.nix
Normal file
26
pkgs/development/python-modules/eventkit/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, numpy
|
||||
}:
|
||||
let
|
||||
pname = "eventkit";
|
||||
version = "1.0.3";
|
||||
hash = "sha256-mUl/bzxjilD/dhby+M2Iexi7/zdl3BvYaBVU2xRnyTM=";
|
||||
in buildPythonPackage {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version hash;
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
dontUseSetuptoolsCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/erdewit/eventkit";
|
||||
description = "Event-driven data pipelines";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ cab404 ];
|
||||
};
|
||||
}
|
|
@ -3865,6 +3865,8 @@ self: super: with self; {
|
|||
|
||||
eve = callPackage ../development/python-modules/eve { };
|
||||
|
||||
eventkit = callPackage ../development/python-modules/eventkit { };
|
||||
|
||||
eventlet = callPackage ../development/python-modules/eventlet { };
|
||||
|
||||
events = callPackage ../development/python-modules/events { };
|
||||
|
|
Loading…
Reference in a new issue