mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.audioread: 1.2.1 -> 2.1.1
This commit is contained in:
parent
f46faccbf0
commit
0ea690d4e1
1 changed files with 6 additions and 2 deletions
|
@ -1011,13 +1011,17 @@ in modules // {
|
|||
});
|
||||
|
||||
audioread = buildPythonPackage rec {
|
||||
name = "audioread-1.2.1";
|
||||
name = "audioread-${version}";
|
||||
version = "2.1.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/a/audioread/${name}.tar.gz";
|
||||
md5 = "01a80357f38dbd9bf8d7403802df89ac";
|
||||
sha256 = "ffb601de7a9e40850d4ec3256a3a6bbe8fa40466dafb5c65f41b08e4bb963f1e";
|
||||
};
|
||||
|
||||
# No tests, need to disable or py3k breaks
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Cross-platform audio decoding";
|
||||
homepage = "https://github.com/sampsyo/audioread";
|
||||
|
|
Loading…
Reference in a new issue