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