blob: 618707d4119d8f307ba26430b0a3a4190cbacd1c (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "mbddns";
version = "0.1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "thinkl33t";
repo = "mb-ddns";
rev = version;
sha256 = "13xzkprqk1v0zlzx4a0n9zzpnlb1g2h6pc62ms66fj72lsmjynj7";
};
propagatedBuildInputs = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "mbddns" ];
meta = {
description = "Mythic Beasts Dynamic DNS updater";
homepage = "https://github.com/thinkl33t/mb-ddns";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|