mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-21 03:23:20 +00:00
Merge pull request #121013 from eduardosm/pyface
pythonPackages.pyface: fix build
This commit is contained in:
commit
217ee74d64
|
@ -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