Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
688 B
Nix
36 lines
688 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
let
|
|
pname = "hifiscan";
|
|
version = "1.5.2";
|
|
hash = "sha256-8eystqjNdDP2X9beogRcsa+Wqu50uMHZv59jdc5GjUc=";
|
|
in
|
|
python3Packages.buildPythonApplication {
|
|
format = "setuptools";
|
|
inherit pname version;
|
|
|
|
pythonPath = with python3Packages; [
|
|
eventkit
|
|
numpy
|
|
sounddevice
|
|
pyqt6
|
|
pyqt6-sip
|
|
pyqtgraph
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|