Skip to content

Commit

Permalink
pythonPackage.pymsgbox: init at 1.0.6
Browse files Browse the repository at this point in the history
(cherry picked from commit c9bf7f6)
  • Loading branch information
jluttine authored and samueldr committed Sep 13, 2018
1 parent ff6e4d0 commit 825f91b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/pymsgbox/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,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 { };
Expand Down

0 comments on commit 825f91b

Please sign in to comment.