about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysimplegui/default.nix
blob: ac2d7482496a25889e83041fee1b0fff4a2b319a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  lib,
  buildPythonPackage,
  fetchPypi,
  tkinter,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pysimplegui";
  version = "5.0.5";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    pname = "PySimpleGUI";
    inherit version;
    hash = "sha256-4B2LgWmdXAU9ACSR0F26Q9+eP3izRI+p6QS/o9m6Hfk=";
  };

  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?
  };
}