forked from mirrors/nixpkgs
pythonPackage.pymsgbox: init at 1.0.6
This commit is contained in:
parent
5c9db2f02f
commit
c9bf7f67b9
24
pkgs/development/python-modules/pymsgbox/default.nix
Normal file
24
pkgs/development/python-modules/pymsgbox/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue