summary refs log tree commit diff
path: root/pkgs/development/python-modules/traitsui/default.nix
blob: 7711b24f44edb6674a3aab15a18a4ec2b96556c7 (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.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "080fq9hag7hvcnsd5c5fn74zjmjl6rjq40r0zwdz2bjlk9049xpi";
  };

  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;
  };
}