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.0";
2019-01-31 21:13:14 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "b699aeea588b55723860ddc6b2bd9b5013c4a72e18d1bbf51c6689cc7c6a562a";
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;
};
}