2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-15 22:10:16 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, isPy3k
|
|
|
|
, pkgs
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildPythonPackage {
|
2018-10-15 22:10:16 +01:00
|
|
|
pname = "python-lxc-unstable";
|
|
|
|
version = "2016-08-25";
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxc";
|
|
|
|
repo = "python2-lxc";
|
|
|
|
rev = "0553f05d23b56b59bf3015fa5e45bfbfab9021ef";
|
|
|
|
sha256 = "0p9kb20xvq91gx2wfs3vppb7vsp8kmd90i3q95l4nl1y4aismdn4";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.lxc ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-15 22:10:16 +01:00
|
|
|
description = "Out of tree python 2.7 binding for liblxc";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/lxc/python2-lxc";
|
2018-10-15 22:10:16 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ mic92 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|