2017-07-26 18:32:29 +01:00
|
|
|
{ lib, fetchurl, buildPythonPackage, numpy }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "sphfile";
|
2020-05-09 11:02:00 +01:00
|
|
|
version = "1.0.3";
|
2017-07-26 18:32:29 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://pypi/s/sphfile/${pname}-${version}.tar.gz";
|
2020-05-09 11:02:00 +01:00
|
|
|
sha256 = "1596d801facc2b03a40a1bc67a839701f068a41597059feb82fc9378420c52c0";
|
2017-07-26 18:32:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Numpy-based NIST SPH audio-file reader";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mcfletch/sphfile";
|
2017-07-26 18:32:29 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|