1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 10:36:36 +03:00
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 22:13:14 +01:00
}:
buildPythonPackage rec {
pname = "traitsui";
version = "7.1.1";
2019-01-31 22:13:14 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "77d9dc5830c4e7ab94f9225bc2f082430399d95c943f1616db41e83a94df38e5";
2019-01-31 22:13:14 +01:00
};
propagatedBuildInputs = [ traits pyface six ];
2019-01-31 22:13:14 +01:00
doCheck = false; # Needs X server
meta = with lib; {
2019-01-31 22:13:14 +01:00
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/traitsui";
maintainers = with maintainers; [ knedlsepp ];
2019-01-31 22:13:14 +01:00
license = licenses.bsdOriginal;
};
}