3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pyface/default.nix

25 lines
605 B
Nix
Raw Normal View History

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