3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackage.pymsgbox: init at 1.0.6

This commit is contained in:
Jaakko Luttinen 2018-08-26 15:43:42 +03:00
parent 5c9db2f02f
commit c9bf7f67b9
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchPypi, buildPythonPackage, tkinter }:
buildPythonPackage rec {
pname = "PyMsgBox";
version = "1.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "0kmd00w7p6maiyqpqqb2j8m6v2gh9c0h5i198pa02bc1c1m1321q";
extension = "zip";
};
propagatedBuildInputs = [ tkinter ];
# Finding tests fails
doCheck = false;
meta = with stdenv.lib; {
description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes";
homepage = https://github.com/asweigart/PyMsgBox;
license = licenses.bsd3;
maintainers = with maintainers; [ jluttine ];
};
}

View file

@ -469,6 +469,8 @@ in {
pymatgen-lammps = callPackage ../development/python-modules/pymatgen-lammps { };
pymsgbox = callPackage ../development/python-modules/pymsgbox { };
pynisher = callPackage ../development/python-modules/pynisher { };
pyparser = callPackage ../development/python-modules/pyparser { };