about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pa-ringbuffer/default.nix
blob: a18eda1f92bf6efc0cbc258c84c40fc112d6c98b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ fetchFromGitHub, buildPythonPackage, lib }:

buildPythonPackage rec {
  pname = "pa-ringbuffer";
  version = "0.1.4";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "spatialaudio";
    repo = "python-pa-ringbuffer";
    rev = version;
    sha256 = "1d4k6z13mc1f88m6wbhfx8hillb7q78n33ws5bmyblsdkv1gx607";
  };

  meta = {
    description = "Adds ring buffer functionality";
    homepage = "https://github.com/spatialaudio/python-pa-ringbuffer";
    maintainers = with lib.maintainers; [ laikq ];
    license = lib.licenses.mit;
  };
}