1{ stdenv, buildPythonPackage, fetchPypi
2, cython, pytest, numpy, scipy, matplotlib, pandas, tabulate }:
3
4buildPythonPackage rec {
5 pname = "acoustics";
6 version = "0.1.2";
7
8 buildInputs = [ cython pytest ];
9 propagatedBuildInputs = [ numpy scipy matplotlib pandas tabulate ];
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b75a47de700d01e704de95953a6e969922b2f510d7eefe59f7f8980ad44ad1b7";
14 };
15
16 # Tests not distributed
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 description = "A package for acousticians";
21 maintainers = with maintainers; [ fridh ];
22 license = with licenses; [ bsd3 ];
23 homepage = https://github.com/python-acoustics/python-acoustics;
24 };
25}