mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.acoustics: init at 0.1.2
This commit is contained in:
parent
58d2d460d0
commit
9e4538112a
1 changed files with 24 additions and 0 deletions
|
@ -41,6 +41,30 @@ in {
|
|||
|
||||
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 {
|
||||
name = "agate-1.2.2";
|
||||
disabled = isPy3k;
|
||||
|
|
Loading…
Reference in a new issue