depot/third_party/nixpkgs/pkgs/development/python-modules/pylxd/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

55 lines
995 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, cryptography
, python-dateutil
, requests
, requests-toolbelt
, requests-unixsocket
, ws4py
, ddt
, mock-services
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pylxd";
version = "2.3.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "lxc";
repo = "pylxd";
rev = "refs/tags/${version}";
hash = "sha256-Q4GMz7HFpJNPYlYgLhE0a7mVCwNpdbw4XVcUGQ2gUJ0=";
};
propagatedBuildInputs = [
cryptography
python-dateutil
requests
requests-toolbelt
requests-unixsocket
ws4py
];
nativeCheckInputs = [
ddt
mock-services
pytestCheckHook
];
disabledTestPaths = [
"integration"
"migration"
];
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; [ ];
};
}