pythonPackages.pyface: fix build
This commit is contained in:
parent
e7e72e070b
commit
d0fec23e2c
1 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, fetchPypi, buildPythonPackage
|
||||
, setuptools, six, traits
|
||||
, importlib-metadata, importlib-resources, six, traits
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -11,10 +11,12 @@ buildPythonPackage rec {
|
|||
sha256 = "a7031ec4cfff034affc822e47ff5e6c1a0272e576d79465cdbbe25f721740322";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ setuptools six traits ];
|
||||
propagatedBuildInputs = [ importlib-metadata importlib-resources six traits ];
|
||||
|
||||
doCheck = false; # Needs X server
|
||||
|
||||
pythonImportsCheck = [ "pyface" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Traits-capable windowing framework";
|
||||
homepage = "https://github.com/enthought/pyface";
|
||||
|
|
Loading…
Reference in a new issue