1{ lib, fetchPypi, buildPythonPackage, tkinter }: 2 3buildPythonPackage rec { 4 pname = "PyMsgBox"; 5 version = "1.0.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0kmd00w7p6maiyqpqqb2j8m6v2gh9c0h5i198pa02bc1c1m1321q"; 10 extension = "zip"; 11 }; 12 13 propagatedBuildInputs = [ tkinter ]; 14 15 # Finding tests fails 16 doCheck = false; 17 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 }; 24}