xpybutil: init at 0.0.6

This commit is contained in:
Artturin 2020-08-18 17:52:00 +03:00 committed by Jon
parent 1c1e75626f
commit 655ace454c
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, xcffib, pillow }:
buildPythonPackage rec {
pname = "xpybutil";
version = "0.0.6";
# Pypi only offers a wheel
src = fetchFromGitHub {
owner = "BurntSushi";
repo = pname;
rev = version;
sha256 = "17gbqq955fcl29aayn8l0x14azc60cxgkvdxblz9q8x3l50w0xpg";
};
# pillow is a dependency in image.py which is not listed in setup.py
propagatedBuildInputs = [ xcffib pillow ];
meta = with lib; {
homepage = "https://github.com/BurntSushi/xpybutil";
description = "An incomplete xcb-util port plus some extras";
license = licenses.wtfpl;
maintainers = with maintainers; [ artturin ];
};
}

View file

@ -7163,6 +7163,8 @@ in {
xcffib = callPackage ../development/python-modules/xcffib {};
xpybutil = callPackage ../development/python-modules/xpybutil {};
pafy = callPackage ../development/python-modules/pafy { };
suds = callPackage ../development/python-modules/suds { };