1{ stdenv, fetchPypi, buildPythonPackage
2, setuptools, six, traits
3}:
4
5buildPythonPackage rec {
6 pname = "pyface";
7 version = "7.0.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "43943cc15889153b90191d9e1bd85e7a3709a6d57b6379220cb14017217fb999";
12 };
13
14 propagatedBuildInputs = [ setuptools six traits ];
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}