pythonPackages.acoustics: init at 0.1.2

This commit is contained in:
Frederik Rietdijk 2016-12-01 17:49:30 +01:00
parent 58d2d460d0
commit 9e4538112a

View File

@ -41,6 +41,30 @@ in {
setuptools = callPackage ../development/python-modules/setuptools { }; setuptools = callPackage ../development/python-modules/setuptools { };
acoustics = buildPythonPackage rec {
pname = "acoustics";
version = "0.1.2";
name = pname + "-" + version;
buildInputs = with self; [ cython pytest ];
propagatedBuildInputs = with self; [ numpy scipy matplotlib pandas tabulate ];
src = pkgs.fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
sha256 = "b75a47de700d01e704de95953a6e969922b2f510d7eefe59f7f8980ad44ad1b7";
};
# Tests not distributed
doCheck = false;
meta = {
description = "A package for acousticians";
maintainer = with maintainers; [ fridh ];
license = with licenses; [ bsd ];
homepage = https://github.com/python-acoustics/python-acoustics;
};
};
agate = buildPythonPackage rec { agate = buildPythonPackage rec {
name = "agate-1.2.2"; name = "agate-1.2.2";
disabled = isPy3k; disabled = isPy3k;