aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pa-ringbuffer/default.nix
blob: fd05e7e8052e520d9da2b36dd2622a18517231ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}