about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysimplegui/default.nix
blob: b67d44e86c3995f0740702c1575291379667b85b (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.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?
  };
}