python310Packages.nc-dnsapi: init at 0.1.5
This commit is contained in:
parent
d9cb3e09b9
commit
3819d5f7c0
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/nc-dnsapi/default.nix
Normal file
30
pkgs/development/python-modules/nc-dnsapi/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nc-dnsapi";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "nc_dnsapi";
|
||||
hash = "sha256-1fvzr3e0ZAbSDOovhLz5GHJCS6l+K89fbYHoaWxO9cA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
pythonImportsCheck = [ "nc_dnsapi" ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "API wrapper for the netcup DNS api";
|
||||
homepage = "https://github.com/nbuchwitz/nc_dnsapi";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ veehaitch trundle ];
|
||||
};
|
||||
}
|
|
@ -6150,6 +6150,8 @@ in {
|
|||
|
||||
nbxmpp = callPackage ../development/python-modules/nbxmpp { };
|
||||
|
||||
nc-dnsapi = callPackage ../development/python-modules/nc-dnsapi { };
|
||||
|
||||
ncclient = callPackage ../development/python-modules/ncclient { };
|
||||
|
||||
nclib = callPackage ../development/python-modules/nclib { };
|
||||
|
|
Loading…
Reference in a new issue