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