python3Packages.acoustics: 0.2.3 -> 0.2.4

This commit is contained in:
Frederik Rietdijk 2020-03-09 14:07:43 +01:00
parent 38345f6db7
commit 634ab6fc5d

View File

@ -3,14 +3,14 @@
buildPythonPackage rec {
pname = "acoustics";
version = "0.2.3";
version = "0.2.4";
checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ];
src = fetchPypi {
inherit pname version;
sha256 = "ca663059d61fbd2899aed4e3cedbc3f983aa67afd3ae1617db3c59b724206fb3";
sha256 = "8ccb68ac258ba81a0b9064523e85eae013f9bfce7244d01db42d7d2d21d712cc";
};
checkPhase = ''
@ -26,6 +26,5 @@ buildPythonPackage rec {
maintainers = with maintainers; [ fridh ];
license = with licenses; [ bsd3 ];
homepage = "https://github.com/python-acoustics/python-acoustics";
broken = true; # no longer compatible with pandas>=1
};
}