Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pymsgbox / default.nix
blobc05533638e6552a1042820cfe04b90529dcb7aec
1 { lib, fetchPypi, buildPythonPackage, tkinter }:
3 buildPythonPackage rec {
4   pname = "pymsgbox";
5   version = "1.0.9";
7   src = fetchPypi {
8     pname = "PyMsgBox";
9     inherit version;
10     hash = "sha256-IZQifei/96PW2lQYSHBaFV3LsqBu4SDZ8oCh1/USY/8=";
11   };
13   propagatedBuildInputs = [ tkinter ];
15   # Finding tests fails
16   doCheck = false;
17   pythonImportsCheck = [ "pymsgbox" ];
19   meta = with lib; {
20     description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes";
21     homepage = "https://github.com/asweigart/PyMsgBox";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ jluttine ];
24   };