1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, isPy3k
5, pkgs
6}:
7
8buildPythonPackage {
9 pname = "python-lxc-unstable";
10 version = "2016-08-25";
11 disabled = isPy3k;
12
13 src = fetchFromGitHub {
14 owner = "lxc";
15 repo = "python2-lxc";
16 rev = "0553f05d23b56b59bf3015fa5e45bfbfab9021ef";
17 sha256 = "0p9kb20xvq91gx2wfs3vppb7vsp8kmd90i3q95l4nl1y4aismdn4";
18 };
19
20 buildInputs = [ pkgs.lxc ];
21
22 meta = with lib; {
23 description = "Out of tree python 2.7 binding for liblxc";
24 homepage = "https://github.com/lxc/python2-lxc";
25 license = licenses.lgpl2;
26 maintainers = with maintainers; [ mic92 ];
27 };
28
29}