blob: 58deefb4f3d3355e3285080406af79931f15ca34 (
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
34
35
36
|
{ lib
, buildPythonPackage
, fetchPypi
, tkinter
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysimplegui";
version = "5.0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "PySimpleGUI";
inherit version;
hash = "sha256-bnjPVGMVfma/tn8oCg6FLMI1W+9rtHMKNdarbNg61GM=";
};
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?
};
}
|