depot/third_party/nixpkgs/pkgs/development/python-modules/pyface/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

24 lines
605 B
Nix

{ stdenv, fetchPypi, buildPythonPackage
, setuptools, six, traits
}:
buildPythonPackage rec {
pname = "pyface";
version = "7.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "9e00aba15de9c0e553dfcc7b346c3541c54f35054dd05b72a9e2343e340adf6f";
};
propagatedBuildInputs = [ setuptools six traits ];
doCheck = false; # Needs X server
meta = with stdenv.lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/pyface";
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
license = licenses.bsdOriginal;
};
}