python3Packages.julius: init at 0.2.7
This commit is contained in:
committed by
Emery Hemingway
parent
dc4fb5062a
commit
ac8f48df38
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user