python3Packages.julius: init at 0.2.7

This commit is contained in:
matthewcroughan
2024-02-20 14:18:33 +00:00
committed by Emery Hemingway
parent dc4fb5062a
commit ac8f48df38
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, torch
}:
buildPythonPackage rec {
pname = "julius";
version = "0.2.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-PA9fUwbX1gFvzJUZaydMrm8H4slZbu0xTk52QVVPuwg=";
};
propagatedBuildInputs = [
torch
];
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "julius" ];
meta = with lib; {
description = "Nice DSP sweets: resampling, FFT Convolutions. All with PyTorch, differentiable and with CUDA support";
homepage = "https://pypi.org/project/julius/";
license = licenses.mit;
maintainers = with maintainers; [ matthewcroughan ];
};
}
+2
View File
@@ -5999,6 +5999,8 @@ self: super: with self; {
jug = callPackage ../development/python-modules/jug { };
julius = callPackage ../development/python-modules/julius { };
junitparser = callPackage ../development/python-modules/junitparser { };
junit2html = callPackage ../development/python-modules/junit2html { };