nixpkgs/pkgs/development/python-modules/xcffib/default.nix

32 lines
676 B
Nix
Raw Normal View History

2018-02-01 07:48:49 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, xorg
, cffi
, six
}:
buildPythonPackage rec {
version = "0.9.0";
2018-02-01 07:48:49 +00:00
pname = "xcffib";
src = fetchPypi {
inherit pname version;
sha256 = "1r03yvxwbimh8ngfrbd436f9r535vvj6m1b3zfgz9kl76c8yn5ic";
2018-02-01 07:48:49 +00:00
};
patchPhase = ''
# Hardcode cairo library path
sed -e 's,ffi\.dlopen(,&"${xorg.libxcb.out}/lib/" + ,' -i xcffib/__init__.py
'';
propagatedBuildInputs = [ cffi six ];
meta = with stdenv.lib; {
description = "A drop in replacement for xpyb, an XCB python binding";
homepage = "https://github.com/tych0/xcffib";
license = licenses.asl20;
maintainers = with maintainers; [ kamilchm ];
};
}