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