33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
54 lines
957 B
Nix
54 lines
957 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.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "pylxd";
|
|
rev = version;
|
|
sha256 = "sha256-eDRCJYjmBndMnSNuS6HD/2p/KhzqJq2qPAzMk7kC5UM=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|