pythonPackages.traitsui: init at 6.0.0

This commit is contained in:
Josef Kemetmüller 2019-01-31 22:13:14 +01:00 committed by Frederik Rietdijk
parent 8a6415f749
commit 4da1a74f25
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,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;
};
}

View File

@ -6156,6 +6156,8 @@ in {
tracing = callPackage ../development/python-modules/tracing { };
traitsui = callPackage ../development/python-modules/traitsui { };
translationstring = callPackage ../development/python-modules/translationstring { };
ttystatus = callPackage ../development/python-modules/ttystatus { };