python: pa_ringbuffer: init at 0.1.3

gstqt5
laikq 2020-07-20 18:03:17 +02:00 committed by Jon
parent ed5a07c0ef
commit ec1f9624da
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ fetchFromGitHub, buildPythonPackage, lib }:
buildPythonPackage rec {
pname = "pa-ringbuffer";
version = "0.1.3";
src = fetchFromGitHub {
owner = "spatialaudio";
repo = "python-pa-ringbuffer";
rev = "${version}";
sha256 = "0afpydy1l20hd1xncjppjhqa2c8dj5h9nlv4z8m55cs9hc9h1mxv";
};
meta = {
description = "Adds ring buffer functionality";
homepage = "https://github.com/spatialaudio/python-pa-ringbuffer";
maintainers = with lib.maintainers; [ laikq ];
license = lib.licenses.mit;
};
}

View File

@ -3240,6 +3240,8 @@ in {
libagent = callPackage ../development/python-modules/libagent { };
pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };
libais = callPackage ../development/python-modules/libais { };
libarchive-c = callPackage ../development/python-modules/libarchive-c { inherit (pkgs) libarchive; };