nixpkgs/pkgs/development/python-modules/pylxd/default.nix

55 lines
964 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, cryptography
, python-dateutil
, requests
, requests-toolbelt
, requests-unixsocket
, ws4py
, ddt
, mock-services
, pytestCheckHook
}:
2021-02-03 10:15:58 +00:00
buildPythonPackage rec {
pname = "pylxd";
version = "2.3.0";
src = fetchFromGitHub {
owner = "lxc";
repo = "pylxd";
rev = version;
sha256 = "144frnlsb21mglgyisms790hyrdfx1l91lcd7incch4m4a1cbpp6";
2021-02-03 10:15:58 +00:00
};
propagatedBuildInputs = [
cryptography
python-dateutil
requests
2021-02-03 10:15:58 +00:00
requests-toolbelt
requests-unixsocket
ws4py
];
checkInputs = [
ddt
mock-services
pytestCheckHook
];
disabledTestPaths = [
"integration"
"migration"
2021-02-03 10:15:58 +00:00
];
pythonImportsCheck = [ "pylxd" ];
meta = with lib; {
description = "A Python library for interacting with the LXD REST API";
homepage = "https://pylxd.readthedocs.io/en/latest/";
license = licenses.asl20;
maintainers = with maintainers; [ petabyteboy ];
};
}