My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pa-ringbuffer/default.nix

20 lines
528 B

{ fetchFromGitHub, buildPythonPackage, lib }:
buildPythonPackage rec {
pname = "pa-ringbuffer";
version = "0.1.4";
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;
};
}