Unverified Commit e107adac authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.pglive: init at 0.8.2 (#383022)

parents 5b998831 d07b582d
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pyqtgraph,
  numpy,
  pyqt5,
  pyqt6,
  pyside6,
}:

buildPythonPackage rec {
  pname = "pglive";
  version = "0.8.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "domarm-comat";
    repo = "pglive";
    rev = "76185c40850b607d9a83843292748463fcaa8089";
    hash = "sha256-/z4hpWqxW4WkHa9SXfu7UXHoNrVpbqR7+YbsRQUuEA8=";
  };

  build-system = [
    poetry-core
  ];

  dependencies = [
    pyqtgraph
    numpy
  ];

  pythonRelaxDeps = [
    "numpy"
  ];

  passthru.optional-dependencies = {
    pyqt5 = [ pyqt5 ];
    pyqt6 = [ pyqt6 ];
    pyside6 = [ pyside6 ];
  };

  pythonImportsCheck = [ "pglive" ];

  meta = {
    changelog = "https://github.com/domarm-comat/pglive/releases/tag/v${version}";
    description = "Live plot for PyqtGraph";
    homepage = "https://github.com/domarm-comat/pglive";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fsagbuya ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10505,6 +10505,8 @@ self: super: with self; {
  pglast = callPackage ../development/python-modules/pglast { };
  pglive = callPackage ../development/python-modules/pglive { };
  pgpdump = callPackage ../development/python-modules/pgpdump { };
  pgpy = callPackage ../development/python-modules/pgpy { };