about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/guestfs/default.nix
blob: a446166c29176a2956d7676cc42e3d93786cf157 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchurl, libguestfs, qemu }:

buildPythonPackage rec {
  pname = "guestfs";
  version = "1.40.1";

  src = fetchurl {
    url = "http://download.libguestfs.org/python/guestfs-${version}.tar.gz";
    sha256 = "06a4b5xf1rkhnzfvck91n0z9mlkrgy90s9na5a8da2g4p776lhkf";
  };

  propagatedBuildInputs = [ libguestfs qemu ];

  meta = with stdenv.lib; {
    homepage = "https://libguestfs.org/guestfs-python.3.html";
    description = "Use libguestfs from Python";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ grahamc ];
  };
}