f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
authlib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
httpx,
|
|
mashumaro,
|
|
orjson,
|
|
pytest-asyncio,
|
|
pytest-httpx,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pytz,
|
|
respx,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydiscovergy";
|
|
version = "3.0.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpbede";
|
|
repo = "pydiscovergy";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-0zyg1EBPOfcA1jAgtNbDCVaTv9hJQ2Xidl+doHbjKrM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/addopts =/d' pyproject.toml
|
|
'';
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
|
|
dependencies = [
|
|
authlib
|
|
httpx
|
|
mashumaro
|
|
orjson
|
|
pytz
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-httpx
|
|
pytestCheckHook
|
|
respx
|
|
];
|
|
|
|
pythonImportsCheck = [ "pydiscovergy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for interacting with the Discovergy API";
|
|
homepage = "https://github.com/jpbede/pydiscovergy";
|
|
changelog = "https://github.com/jpbede/pydiscovergy/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|