fixup! python3Packages.julius: 0.2.7 -> 0.2.8

This commit is contained in:
Fabian Affolter
2026-08-25 19:11:31 +02:00
parent e662b812c2
commit b76a2e5d8a

View File

@@ -2,34 +2,30 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
hatchling,
torch,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "julius";
version = "0.2.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-1pHmUSAJMK/+pPbIScJulf7IRghyga49GndX6skCU9U=";
};
propagatedBuildInputs = [ torch ];
build-system = [ hatchling ];
nativeBuildInputs = [
setuptools
wheel
];
dependencies = [ torch ];
pythonImportsCheck = [ "julius" ];
meta = {
description = "Nice DSP sweets: resampling, FFT Convolutions. All with PyTorch, differentiable and with CUDA support";
homepage = "https://pypi.org/project/julius/";
description = "Module to perform resampling and FFT convolutions";
homepage = "https://github.com/adefossez/julius";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthewcroughan ];
};
}
})