13 buildPythonPackage rec {
16 format = "setuptools";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-LOWpOPAEK+ga7c3bR15QvnHmON6ARS1Qee/7U/VMlTY=";
27 propagatedBuildInputs = [
39 substituteInPlace setup.cfg \
40 --replace " --cov-report term-missing --cov resampy --cov-report=xml" ""
43 pythonImportsCheck = [ "resampy" ];
46 description = "Efficient signal resampling";
47 homepage = "https://github.com/bmcfee/resampy";
48 license = licenses.isc;