python312Packages.guppy3: 3.1.4.post1 -> 3.1.5 (#370979)

This commit is contained in:
Fabian Affolter
2025-01-05 09:37:59 +01:00
committed by GitHub
@@ -16,23 +16,24 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "zhuyifei1999";
repo = pname;
repo = "guppy3";
tag = "v${version}";
hash = "sha256-hgJcy4DRfZL50dCcRv2a6GJPDabsUMfDtq7HCXXYYz8=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ tkinter ];
dependencies = [ tkinter ];
# Tests are starting a Tkinter GUI
doCheck = false;
pythonImportsCheck = [ "guppy" ];
meta = with lib; {
description = "Python Programming Environment & Heap analysis toolset";
homepage = "https://zhuyifei1999.github.io/guppy3/";
license = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}