python3Packages.envisage: 7.0.4 -> 7.0.4-unstable-2026-07-07

In particular, we need the fix at enthought/envisage#600.

Fixes #542236.

(cherry picked from commit bfad059643)
This commit is contained in:
Adam Dinwoodie
2026-07-15 21:48:25 +01:00
committed by github-actions[bot]
parent c3889063d9
commit 5dcea825fd

View File

@@ -2,7 +2,7 @@
lib,
apptools,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
pyface,
pytestCheckHook,
setuptools,
@@ -10,14 +10,16 @@
traitsui,
}:
buildPythonPackage rec {
buildPythonPackage {
pname = "envisage";
version = "7.0.4";
version = "7.0.4-unstable-2026-07-07";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1rspOLu0XE7xdmxV7W9sHHK2/OcEaKyfWw780e+MHZc=";
src = fetchFromGitHub {
owner = "enthought";
repo = "envisage";
rev = "8b1548a589ff1c317a3a1c709e2d186302e8df88";
hash = "sha256-EF0FEuKX0TPmb9eOyiF7M3DoLyvxpcq8ePQHxEfg30g=";
};
build-system = [ setuptools ];