Unverified Commit d4cc7018 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

python3.pkgs.guidata: 3.13.4 -> 3.14.2; fix tests (#494421)

parents fe0360e3 2f3d6b6d
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  stdenv,
  buildPythonPackage,
  pythonAtLeast,
  fetchFromGitHub,

  # build-system
@@ -30,16 +31,19 @@

buildPythonPackage rec {
  pname = "guidata";
  version = "3.13.4";
  version = "3.14.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "PlotPyStack";
    repo = "guidata";
    tag = "v${version}";
    hash = "sha256-JuYxPkKeOQOzoDiyk50IhAiICUcKptyD5RUx4DaiOOI=";
    hash = "sha256-iUfZX51Ef1PY7roy9ER8hG34BAhCLs3Sagoasd5BT3E=";
  };

  # https://github.com/PlotPyStack/guidata/issues/97
  disabled = pythonAtLeast "3.14";

  build-system = [
    setuptools
  ];