{ lib, buildPythonPackage, fetchPypi , pytest, numpy, scipy, matplotlib, pandas, tabulate, pythonOlder }: buildPythonPackage rec { pname = "acoustics"; version = "0.2.1"; checkInputs = [ pytest ]; propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ]; src = fetchPypi { inherit pname version; sha256 = "d7cec62d3e7a7eb26026f2aacc726fb1dd0b044574cbdee83da654b847543c20"; }; checkPhase = '' pushd tests py.test ./. popd ''; disabled = pythonOlder "3.6"; meta = with lib; { description = "A package for acousticians"; maintainers = with maintainers; [ fridh ]; license = with licenses; [ bsd3 ]; homepage = https://github.com/python-acoustics/python-acoustics; }; }