aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/audioread/default.nix
blob: a4f6d9057654e0a9b6b4a6d3cfd3c97dc4fd36f0 (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.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a3480e42056c8e80a8192a54f6729a280ef66d27782ee11cbd63e9d4d1523089";
  };

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