hifiscan: init at 1.5.2 (#285560)

This commit is contained in:
Cabia Rangris 2024-03-21 13:59:34 +03:00 committed by GitHub
parent 6699e5f037
commit 936ae679c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 56 additions and 0 deletions

View 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";
};
}

View 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 ];
};
}

View file

@ -3865,6 +3865,8 @@ self: super: with self; {
eve = callPackage ../development/python-modules/eve { }; eve = callPackage ../development/python-modules/eve { };
eventkit = callPackage ../development/python-modules/eventkit { };
eventlet = callPackage ../development/python-modules/eventlet { }; eventlet = callPackage ../development/python-modules/eventlet { };
events = callPackage ../development/python-modules/events { }; events = callPackage ../development/python-modules/events { };