depot/third_party/nixpkgs/pkgs/development/python-modules/pa-ringbuffer/default.nix
Default email a4fd2de975 Project import generated by Copybara.
GitOrigin-RevId: 34ad166a830d3ac1541dcce571c52231f2f0865a
2020-11-02 21:18:15 -05:00

20 lines
528 B
Nix

{ 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;
};
}