depot/third_party/nixpkgs/pkgs/development/python-modules/pyface/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

24 lines
605 B
Nix

{ stdenv, fetchPypi, buildPythonPackage
, setuptools, six, traits
}:
buildPythonPackage rec {
pname = "pyface";
version = "7.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "43943cc15889153b90191d9e1bd85e7a3709a6d57b6379220cb14017217fb999";
};
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;
};
}