blob: 7e3adb8cfc04be88bdf7e338d3267f5a677695ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
aiohttp,
aresponses,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage rec {
pname = "pyuptimerobot";
version = "23.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "ludeeus";
repo = "pyuptimerobot";
tag = 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 = {
description = "Python API wrapper for Uptime Robot";
homepage = "https://github.com/ludeeus/pyuptimerobot";
changelog = "https://github.com/ludeeus/pyuptimerobot/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|