13 buildPythonPackage rec {
14 pname = "torch-pitch-shift";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "torch-pitch-shift";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-QuDz9IpmBdzfMjwAuG2Ln0x2OL/w3RVd/EfO4Ws78dw=";
27 pythonRelaxDeps = [ "torchaudio" ];
29 build-system = [ setuptools ];
41 pythonImportsCheck = [ "torch_pitch_shift" ];
44 description = "Pitch-shift audio clips quickly with PyTorch (CUDA supported)! Additional utilities for searching efficient transformations are included";
45 homepage = "https://github.com/KentoNishi/torch-pitch-shift";
46 changelog = "https://github.com/KentoNishi/torch-pitch-shift/releases/tag/v${version}";
47 license = licenses.mit;
48 maintainers = with maintainers; [ matthewcroughan ];