Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 580 B view raw
1{ lib, fetchPypi, buildPythonPackage 2, traits, pyface, six 3}: 4 5buildPythonPackage rec { 6 pname = "traitsui"; 7 version = "7.0.1"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "74fb4db848ac1343241fa4dc5d9bf3fab561f309826c602e8a3568309df91fe3"; 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}