2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 01:24:47 +00:00
nixpkgs/pkgs/development/python-modules/pysimplegui/default.nix
lucasew ef6096748d pythonPackages.pysimplegui: init at 4.55.1
Signed-off-by: lucasew <lucas59356@gmail.com>
2021-12-30 15:44:29 -03:00

28 lines
547 B
Nix

{ 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 ];
};
}