94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
32 lines
718 B
Nix
32 lines
718 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, tkinter
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "guppy3";
|
|
version = "3.1.3";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zhuyifei1999";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-i3WqXlNnNhBVw9rdnxnzQISFkZHBpc/gqG+rxOWPiyc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ 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 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|