Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 580 B view raw
1{ lib, fetchPypi, buildPythonPackage 2, traits, pyface, six 3}: 4 5buildPythonPackage rec { 6 pname = "traitsui"; 7 version = "7.1.1"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "77d9dc5830c4e7ab94f9225bc2f082430399d95c943f1616db41e83a94df38e5"; 12 }; 13 14 propagatedBuildInputs = [ traits pyface six ]; 15 16 doCheck = false; # Needs X server 17 18 meta = with lib; { 19 description = "Traits-capable windowing framework"; 20 homepage = "https://github.com/enthought/traitsui"; 21 maintainers = with maintainers; [ knedlsepp ]; 22 license = licenses.bsdOriginal; 23 }; 24}