pythonPackages.traitsui: init at 6.0.0
This commit is contained in:
parent
8a6415f749
commit
4da1a74f25
24
pkgs/development/python-modules/traitsui/default.nix
Normal file
24
pkgs/development/python-modules/traitsui/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user