emacsPackages.treemacs: replace python3 program (#364623)
[NixPkgs.git] / pkgs / development / python-modules / easygui / default.nix
blobd19d378fde5d39bd709d169b11ad895fdac917b3
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   tkinter,
6 }:
8 buildPythonPackage rec {
9   pname = "easygui";
10   version = "0.98.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-1lP/ee4fQvY7WgkPL5jOAjNdhq2JY7POJmGAXK/pmgQ=";
16   };
18   propagatedBuildInputs = [ tkinter ];
20   doCheck = false; # No tests available
22   pythonImportsCheck = [ "easygui" ];
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   };