Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / julius / default.nix
bloba261b43454d62631cd24b694931ffc6048219e48
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 , torch
7 }:
9 buildPythonPackage rec {
10   pname = "julius";
11   version = "0.2.7";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-PA9fUwbX1gFvzJUZaydMrm8H4slZbu0xTk52QVVPuwg=";
17   };
19   propagatedBuildInputs = [
20     torch
21   ];
23   nativeBuildInputs = [
24     setuptools
25     wheel
26   ];
28   pythonImportsCheck = [ "julius" ];
30   meta = with lib; {
31     description = "Nice DSP sweets: resampling, FFT Convolutions. All with PyTorch, differentiable and with CUDA support";
32     homepage = "https://pypi.org/project/julius/";
33     license = licenses.mit;
34     maintainers = with maintainers; [ matthewcroughan ];
35   };