mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
python3Packages.qemu: init at 0.6.1.0a1
This commit is contained in:
parent
4cf92787c8
commit
6cc7f7b9b1
36
pkgs/development/python-modules/qemu/default.nix
Normal file
36
pkgs/development/python-modules/qemu/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, pkgs
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fuseSupport ? false, fusepy
|
||||
, tuiSupport ? false, urwid, urwid-readline, pygments
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "qemu";
|
||||
version = "0.6.1.0a1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = pkgs.qemu.src;
|
||||
prePatch = ''
|
||||
cd python
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ ]
|
||||
++ lib.optionals fuseSupport [ fusepy ]
|
||||
++ lib.optionals tuiSupport [ urwid urwid-readline pygments ];
|
||||
|
||||
# Project requires avocado-framework for testing
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "qemu" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.qemu.org/";
|
||||
description = "Python tooling used by the QEMU project to build, configure, and test QEMU";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ devplayer0 ];
|
||||
};
|
||||
}
|
@ -12280,6 +12280,8 @@ self: super: with self; {
|
||||
|
||||
qgrid = callPackage ../development/python-modules/qgrid { };
|
||||
|
||||
qemu = callPackage ../development/python-modules/qemu { };
|
||||
|
||||
qiling = callPackage ../development/python-modules/qiling { };
|
||||
|
||||
qimage2ndarray = callPackage ../development/python-modules/qimage2ndarray { };
|
||||
|
Loading…
Reference in New Issue
Block a user