3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/resampy/default.nix

35 lines
612 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, numpy
, scipy
, cython
2019-03-04 20:37:31 +00:00
, numba
, six
}:
buildPythonPackage rec {
pname = "resampy";
2018-11-04 10:35:15 +00:00
version = "0.2.1";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:15 +00:00
sha256 = "7f6912ca2b746eb9bcdc05c52fcef088f0b7ba1ca6ee0b2d0a359d18fc57f8f8";
};
checkInputs = [ pytest pytestcov ];
2019-03-04 20:37:31 +00:00
propagatedBuildInputs = [ numpy scipy cython numba six ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/bmcfee/resampy;
description = "Efficient signal resampling";
license = licenses.isc;
};
}