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:
parent
47aad6e9b5
commit
17036309a3
20
pkgs/development/python-modules/guestfs/default.nix
Normal file
20
pkgs/development/python-modules/guestfs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue