1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 08:28:20 +00:00

python3Packages.guestfs: init at 1.40.1

This commit is contained in:
Graham Christensen 2019-02-06 20:53:59 -05:00
parent 47aad6e9b5
commit 17036309a3
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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 = "http://libguestfs.org/guestfs-python.3.html";
description = "Use libguestfs from Python";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ grahamc ];
};
}

View file

@ -406,6 +406,8 @@ in {
gssapi = callPackage ../development/python-modules/gssapi { };
guestfs = callPackage ../development/python-modules/guestfs { };
h5py = callPackage ../development/python-modules/h5py {
hdf5 = pkgs.hdf5;
};