pythonPackages.xpybutil: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-26 00:15:27 -07:00 committed by Frederik Rietdijk
parent baf247e2f9
commit 744601b6e5

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, xcffib, pillow }: { lib, buildPythonPackage, fetchFromGitHub, xcffib, pillow, nose }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "xpybutil"; pname = "xpybutil";
@ -15,6 +15,8 @@ buildPythonPackage rec {
# pillow is a dependency in image.py which is not listed in setup.py # pillow is a dependency in image.py which is not listed in setup.py
propagatedBuildInputs = [ xcffib pillow ]; propagatedBuildInputs = [ xcffib pillow ];
checkInputs = [ nose ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/BurntSushi/xpybutil"; homepage = "https://github.com/BurntSushi/xpybutil";
description = "An incomplete xcb-util port plus some extras"; description = "An incomplete xcb-util port plus some extras";