blob: caaf0fa97f69351f6597464f737187a44f0dcba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
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 = {
description = "Nice DSP sweets: resampling, FFT Convolutions. All with PyTorch, differentiable and with CUDA support";
homepage = "https://pypi.org/project/julius/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthewcroughan ];
};
}
|