python3Packages.pycfdns: init at 1.2.1

This commit is contained in:
Fabian Affolter 2021-01-23 14:10:15 +01:00
parent 4affc40a50
commit ca100334df
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pycfdns";
version = "1.2.1";
src = fetchFromGitHub {
owner = "ludeeus";
repo = pname;
rev = version;
sha256 = "0df4695cb0h6f2lnn6dx4h5al2ra93zp1hzfaz07nj2gvirswp83";
};
propagatedBuildInputs = [
aiohttp
async-timeout
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pycfdns" ];
meta = with lib; {
description = "Python module for updating Cloudflare DNS A records";
homepage = "https://github.com/ludeeus/pycfdns";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5205,6 +5205,8 @@ in {
pycdio = callPackage ../development/python-modules/pycdio { };
pycfdns = callPackage ../development/python-modules/pycfdns { };
pychart = callPackage ../development/python-modules/pychart { };
pychef = callPackage ../development/python-modules/pychef { };