python310Packages.resampy: 0.2.2 -> 0.3.0

This commit is contained in:
R. Ryantm 2022-06-30 19:11:44 +00:00
parent 02666ed202
commit 08173c03f0

View file

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "resampy";
version = "0.2.2";
version = "0.3.0";
# No tests in PyPi Archive
src = fetchFromGitHub {
owner = "bmcfee";
repo = pname;
rev = version;
sha256 = "0qmkxl5sbgh0j73n667vyi7ywzh09iaync91yp1j5rrcmwsn0qfs";
rev = "refs/tags/${version}";
sha256 = "sha256-OVj5dQafIoKeA04yTGBKTinldMjEccxrdiuRFIvRzcE=";
};
checkInputs = [ pytest pytest-cov ];