Merge pull request #110592 from fabaff/pycfdns
This commit is contained in:
commit
9889ae01be
3 changed files with 37 additions and 1 deletions
34
pkgs/development/python-modules/pycfdns/default.nix
Normal file
34
pkgs/development/python-modules/pycfdns/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -121,7 +121,7 @@
|
||||||
"clicksend_tts" = ps: with ps; [ ];
|
"clicksend_tts" = ps: with ps; [ ];
|
||||||
"climate" = ps: with ps; [ ];
|
"climate" = ps: with ps; [ ];
|
||||||
"cloud" = ps: with ps; [ aiohttp-cors hass-nabucasa ];
|
"cloud" = ps: with ps; [ aiohttp-cors hass-nabucasa ];
|
||||||
"cloudflare" = ps: with ps; [ ]; # missing inputs: pycfdns
|
"cloudflare" = ps: with ps; [ pycfdns ];
|
||||||
"cmus" = ps: with ps; [ ]; # missing inputs: pycmus
|
"cmus" = ps: with ps; [ ]; # missing inputs: pycmus
|
||||||
"co2signal" = ps: with ps; [ ]; # missing inputs: co2signal
|
"co2signal" = ps: with ps; [ ]; # missing inputs: co2signal
|
||||||
"coinbase" = ps: with ps; [ ]; # missing inputs: coinbase
|
"coinbase" = ps: with ps; [ ]; # missing inputs: coinbase
|
||||||
|
|
|
@ -5209,6 +5209,8 @@ in {
|
||||||
|
|
||||||
pycdio = callPackage ../development/python-modules/pycdio { };
|
pycdio = callPackage ../development/python-modules/pycdio { };
|
||||||
|
|
||||||
|
pycfdns = callPackage ../development/python-modules/pycfdns { };
|
||||||
|
|
||||||
pychart = callPackage ../development/python-modules/pychart { };
|
pychart = callPackage ../development/python-modules/pychart { };
|
||||||
|
|
||||||
pychef = callPackage ../development/python-modules/pychef { };
|
pychef = callPackage ../development/python-modules/pychef { };
|
||||||
|
|
Loading…
Reference in a new issue