Unverified Commit f396d53d authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #250942 from GaetanLepage/apkit

python310Packages.apkit: init at unstable 2022-08-23
parents ca610a45 9836685e
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, scipy
}:

buildPythonPackage {
  pname = "apkit";
  version = "unstable-2022-08-23";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "hwp";
    repo = "apkit";
    rev = "40561738c3f585c590c3f0584bf2e3354eefbd48";
    hash = "sha256-/pwoEKB6BD+wWy7QwPwwzSxGn+TAOaMzduOXyuoXC8g=";
  };

  propagatedBuildInputs = [
    numpy
    scipy
  ];

  pythonImportsCheck = [ "apkit" ];

  # This package has no tests
  doCheck = false;

  meta = with lib; {
    description = "Audio processing toolkit";
    homepage = "https://github.com/hwp/apkit";
    license = licenses.mit;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -584,6 +584,8 @@ self: super: with self; {

  apispec-webframeworks = callPackage ../development/python-modules/apispec-webframeworks { };

  apkit = callPackage ../development/python-modules/apkit { };

  aplpy = callPackage ../development/python-modules/aplpy { };

  app-model = callPackage ../development/python-modules/app-model { };