pythonPackages.pysimplegui: init at 4.55.1
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, tkinter
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "PySimpleGUI";
|
||||
version = "4.55.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-nUDAoMK0w9Luk1hU5I1yT1CK5oEj9LrIByYS3Z5wfew=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "PySimpleGUI" ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
tkinter
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python GUIs for Humans.";
|
||||
homepage = "https://github.com/PySimpleGUI/PySimpleGUI";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ lucasew ];
|
||||
};
|
||||
}
|
||||
@@ -7359,6 +7359,8 @@ in {
|
||||
|
||||
pysigset = callPackage ../development/python-modules/pysigset { };
|
||||
|
||||
pysimplegui = callPackage ../development/python-modules/pysimplegui { };
|
||||
|
||||
pysingleton = callPackage ../development/python-modules/pysingleton { };
|
||||
|
||||
pyslurm = callPackage ../development/python-modules/pyslurm {
|
||||
|
||||
Reference in New Issue
Block a user