2017-07-14 12:59:48 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, cython, pytest, numpy, scipy, matplotlib, pandas, tabulate }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "acoustics";
|
|
|
|
version = "0.1.2";
|
|
|
|
|
|
|
|
buildInputs = [ cython pytest ];
|
|
|
|
propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "b75a47de700d01e704de95953a6e969922b2f510d7eefe59f7f8980ad44ad1b7";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Tests not distributed
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A package for acousticians";
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = with maintainers; [ fridh ];
|
2017-07-14 12:59:48 +01:00
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
homepage = https://github.com/python-acoustics/python-acoustics;
|
2018-11-29 09:18:19 +00:00
|
|
|
broken = true;
|
2017-07-14 12:59:48 +01:00
|
|
|
};
|
|
|
|
}
|