1{ lib, fetchPypi, buildPythonPackage, tkinter }:
2
3buildPythonPackage rec {
4 pname = "easygui";
5 version = "0.98.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-1lP/ee4fQvY7WgkPL5jOAjNdhq2JY7POJmGAXK/pmgQ=";
10 };
11
12 propagatedBuildInputs = [
13 tkinter
14 ];
15
16 doCheck = false; # No tests available
17
18 pythonImportsCheck = [ "easygui" ];
19
20 meta = with lib; {
21 description = "Very simple, very easy GUI programming in Python";
22 homepage = "https://github.com/robertlugg/easygui";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ ];
25 };
26}