biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / nc-dnsapi / default.nix
blobcf6511b1eb9713eda23100832c2e7e9ccac499b7
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "nc-dnsapi";
10   version = "0.1.6";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "nbuchwitz";
15     repo = "nc_dnsapi";
16     rev = "v${version}";
17     hash = "sha256-OE4+wJbJbUZ+YB5J5OyvytLFCcrnXCeZEqmphHKKprQ=";
18   };
20   propagatedBuildInputs = [ requests ];
22   pythonImportsCheck = [ "nc_dnsapi" ];
24   # no tests
25   doCheck = false;
27   meta = with lib; {
28     description = "API wrapper for the netcup DNS api";
29     homepage = "https://github.com/nbuchwitz/nc_dnsapi";
30     license = licenses.gpl3;
31     maintainers = with maintainers; [
32       veehaitch
33       trundle
34     ];
35   };