about summary refs log tree commit diff
path: root/pkgs/development/python-modules/audioread/default.nix
blob: bf71cf8cfbdd9a224d97b8df8fe28cdf8d509b63 (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
24
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "audioread";
  name = "${pname}-${version}";
  version = "2.1.1";

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

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