depot/third_party/nixpkgs/pkgs/development/python-modules/nc-dnsapi/default.nix
Default email c7e6337bd0 Project import generated by Copybara.
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
2023-04-29 12:46:19 -04:00

31 lines
646 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "nc-dnsapi";
version = "0.1.6";
src = fetchFromGitHub {
owner = "nbuchwitz";
repo = "nc_dnsapi";
rev = "v${version}";
hash = "sha256-OE4+wJbJbUZ+YB5J5OyvytLFCcrnXCeZEqmphHKKprQ=";
};
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 ];
};
}