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