summary refs log tree commit diff
path: root/pkgs/development/python-modules/traitsui/default.nix
blob: 8e7a5643d70e26c5ef9f2cbce11384f052c05924 (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
{ stdenv, fetchPypi, buildPythonPackage
, traits, pyface, wxPython
}:

buildPythonPackage rec {
  pname = "traitsui";
  version = "6.1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0kw1xy5ax6l0lzmk7pfzjw6qs0idv78k3118my7cbvw1n5iiff28";
  };

  propagatedBuildInputs = [ traits pyface wxPython ];

  doCheck = false; # Needs X server

  meta = with stdenv.lib; {
    description = "Traits-capable windowing framework";
    homepage = "https://github.com/enthought/traitsui";
    maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
    license = licenses.bsdOriginal;
  };
}