depot/third_party/nixpkgs/pkgs/development/python-modules/pysimplegui/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
749 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
tkinter,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pysimplegui";
version = "5.0.4";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "PySimpleGUI";
inherit version;
hash = "sha256-pThG6BBWxy98REUae91yBZDKK8Q1Zc1PHpoW7nhdmAw=";
};
propagatedBuildInputs = [ tkinter ];
pythonImportsCheck = [ "PySimpleGUI" ];
meta = with lib; {
description = "Python GUIs for Humans";
homepage = "https://github.com/PySimpleGUI/PySimpleGUI";
license = licenses.unfree;
maintainers = with maintainers; [ lucasew ];
broken = true; # update to v5 broke the package, it now needs rsa and is trying to access an X11 socket?
};
}