1{ stdenv, fetchPypi, buildPythonPackage
2, setuptools, six, traits, wxPython
3}:
4
5buildPythonPackage rec {
6 pname = "pyface";
7 version = "6.1.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "1q5rihmhcdyyp44p31f5l4a0mc9m3293rvcnma5p8w0v8j7dbrm7";
12 };
13
14 propagatedBuildInputs = [ setuptools six traits wxPython ];
15
16 doCheck = false; # Needs X server
17
18 meta = with stdenv.lib; {
19 description = "Traits-capable windowing framework";
20 homepage = https://github.com/enthought/pyface;
21 maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
22 license = licenses.bsdOriginal;
23 };
24}