mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
612 B
Nix
25 lines
612 B
Nix
{ lib, fetchurl, buildPythonPackage, numpy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphfile";
|
|
version = "1.0.0";
|
|
name = pname + "-" + version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/s/sphfile/${name}.tar.gz";
|
|
sha256 = "1ly9746xrzbiax9cxr5sxlg0wvf6fdxcrgwsqqxckk3wnqfypfrd";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Numpy-based NIST SPH audio-file reader";
|
|
homepage = "https://github.com/mcfletch/sphfile";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|