Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / easygui / default.nix
blobcfcd2ed77ad71debe79c507c4c8d847b5062ba98
1 { lib, fetchPypi, buildPythonPackage, tkinter }:
3 buildPythonPackage rec {
4   pname = "easygui";
5   version = "0.98.3";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-1lP/ee4fQvY7WgkPL5jOAjNdhq2JY7POJmGAXK/pmgQ=";
10   };
12   propagatedBuildInputs = [
13     tkinter
14   ];
16   doCheck = false; # No tests available
18   pythonImportsCheck = [ "easygui" ];
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   };