python.pkgs.acoustics: 0.2.0.post1 -> 0.2.0.post2

This commit is contained in:
Frederik Rietdijk 2019-02-20 21:52:16 +01:00
parent bba6de611a
commit 2a81eceeba

View File

@ -3,21 +3,20 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "acoustics"; pname = "acoustics";
version = "0.2.0.post1"; version = "0.2.0.post2";
checkInputs = [ pytest ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ]; propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "738218db41ff1b1f932eabb700e400d84141af6f29392aab5f7be1b19758f806"; sha256 = "c0ca4d7ca67fd867c3a7e34232a98a1fc210ee7ff845f3d2eed445a01737b2ff";
}; };
# Tests look in wrong place for test data
doCheck = false;
checkPhase = '' checkPhase = ''
py.test tests pushd tests
py.test ./.
popd
''; '';
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";