Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / resampy / default.nix
blobf9827dca48d63328b15f8bbebe882c5bc8eb67d5
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchFromGitHub
5 , numba
6 , numpy
7 , pytestCheckHook
8 , pythonOlder
9 , scipy
12 buildPythonPackage rec {
13   pname = "resampy";
14   version = "0.4.2";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "bmcfee";
21     repo = pname;
22     rev = "refs/tags/${version}";
23     hash = "sha256-t5I7NJmIeV0uucPyvR+UJ24NK7fIzYlNJ8bECkbvdjI=";
24   };
26   propagatedBuildInputs = [
27     numpy
28     cython
29     numba
30   ];
32   nativeCheckInputs = [
33     pytestCheckHook
34     scipy
35   ];
37   postPatch = ''
38     substituteInPlace setup.cfg \
39       --replace " --cov-report term-missing --cov resampy --cov-report=xml" ""
40   '';
42   pythonImportsCheck = [
43     "resampy"
44   ];
46   meta = with lib; {
47     description = "Efficient signal resampling";
48     homepage = "https://github.com/bmcfee/resampy";
49     license = licenses.isc;
50     maintainers = with maintainers; [ ];
51   };