Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pymsgbox / default.nix
blob84ab3dcab1bf12b9bbea113f85c1c33b1c560017
1 { lib, fetchPypi, buildPythonPackage, tkinter }:
3 buildPythonPackage rec {
4   pname = "PyMsgBox";
5   version = "1.0.6";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0kmd00w7p6maiyqpqqb2j8m6v2gh9c0h5i198pa02bc1c1m1321q";
10     extension = "zip";
11   };
13   propagatedBuildInputs = [ tkinter ];
15   # Finding tests fails
16   doCheck = false;
18   meta = with lib; {
19     description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes";
20     homepage = "https://github.com/asweigart/PyMsgBox";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ jluttine ];
23   };