2017-07-26 10:32:29 -07:00
|
|
|
{ lib, fetchurl, buildPythonPackage, numpy }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 03:26:09 -08:00
|
|
|
pname = "sphfile";
|
2018-10-06 03:56:20 -07:00
|
|
|
version = "1.0.1";
|
2017-07-26 10:32:29 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
|
2018-10-06 03:56:20 -07:00
|
|
|
sha256 = "422b0704107b02ef3ca10e55ccdc80b0bb5ad8e2613b6442f8e2ea372c7cf5d8";
|
2017-07-26 10:32:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Numpy-based NIST SPH audio-file reader";
|
2018-02-25 08:47:45 -08:00
|
|
|
homepage = https://github.com/mcfletch/sphfile;
|
2017-07-26 10:32:29 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|