nixpkgs/pkgs/development/python-modules/sphfile/default.nix
Nikolay Amiantov 08f8ad26b3 treewide: unquote homepage in my packages
I don't like this personally but we have #27809 as a precedent.
2018-02-25 22:24:08 +03:00

25 lines
610 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;
};
}