Unverified Commit 936ae679 authored by Cabia Rangris's avatar Cabia Rangris Committed by GitHub
Browse files

hifiscan: init at 1.5.2 (#285560)

parent 6699e5f0
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };