summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphfile/default.nix
blob: 8c2351c981e933093a5dc52d601bf62def985ddc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, fetchurl, buildPythonPackage, numpy }:

buildPythonPackage rec {
  name = "sphfile-${version}";
  version = "1.0.0";

  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;
  };
}