50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
aiohttp,
|
||
|
aresponses,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
pytestCheckHook,
|
||
|
pytest-asyncio,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyuptimerobot";
|
||
|
version = "23.1.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ludeeus";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-hy/hmXxxEb44X8JUszoA1YF/41y7GkQqC4uS+Pax6WA=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
# Upstream doesn't set version in the repo
|
||
|
substituteInPlace setup.py \
|
||
|
--replace 'version="main",' 'version="${version}",'
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [ aiohttp ];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
aresponses
|
||
|
pytestCheckHook
|
||
|
pytest-asyncio
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pyuptimerobot" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python API wrapper for Uptime Robot";
|
||
|
homepage = "https://github.com/ludeeus/pyuptimerobot";
|
||
|
changelog = "https://github.com/ludeeus/pyuptimerobot/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|