aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/audioread/default.nix
blob: addd187abeb69e838a67f3ec7f0e4baa3c63ee20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
, pytestrunner
}:

buildPythonPackage rec {
  pname = "audioread";
  version = "2.1.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "073904fabc842881e07bd3e4a5776623535562f70b1655b635d22886168dd168";
  };

  nativeBuildInputs = [ pytestrunner ];

  # No tests, need to disable or py3k breaks
  doCheck = false;

  meta = {
    description = "Cross-platform audio decoding";
    homepage = "https://github.com/sampsyo/audioread";
    license = lib.licenses.mit;
  };
}