nixpkgs/pkgs/development/python-modules/traitsui/default.nix

25 lines
580 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
, traits, pyface, six
2019-01-31 21:13:14 +00:00
}:
buildPythonPackage rec {
pname = "traitsui";
version = "7.1.1";
2019-01-31 21:13:14 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "77d9dc5830c4e7ab94f9225bc2f082430399d95c943f1616db41e83a94df38e5";
2019-01-31 21:13:14 +00:00
};
propagatedBuildInputs = [ traits pyface six ];
2019-01-31 21:13:14 +00:00
doCheck = false; # Needs X server
meta = with lib; {
2019-01-31 21:13:14 +00:00
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/traitsui";
maintainers = with maintainers; [ knedlsepp ];
2019-01-31 21:13:14 +00:00
license = licenses.bsdOriginal;
};
}