Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0730e81785e3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9c6fbbd9aae7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 4, 2019

  1. Copy the full SHA
    12a2253 View commit details

Commits on Aug 7, 2019

  1. Merge pull request #65984 from prusnak/webrtcvad

    pythonPackages.webrtcvad: init at 2.0.10
    mmahut authored Aug 7, 2019
    Copy the full SHA
    9c6fbbd View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/development/python-modules/webrtcvad/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/webrtcvad/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
pname = "webrtcvad";
version = "2.0.10";

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

# required WAV files for testing are not included in the tarball
doCheck = false;

meta = {
description = "Interface to the Google WebRTC Voice Activity Detector (VAD)";
homepage = https://github.com/wiseman/py-webrtcvad;
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ prusnak ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -6110,6 +6110,8 @@ in {
fastapi = callPackage ../development/python-modules/fastapi { };

stringcase = callPackage ../development/python-modules/stringcase { };

webrtcvad = callPackage ../development/python-modules/webrtcvad { };
});

in fix' (extends overrides packages)