Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

octodns-providers.bind: 0.0.7 -> 1.0.1

Diff: https://github.com/octodns/octodns-bind/compare/v0.0.7...v1.0.1

Changelog: https://github.com/octodns/octodns-bind/blob/v1.0.1/CHANGELOG.md

+7 -7
+7 -7
pkgs/by-name/oc/octodns/providers/bind/package.nix
··· 11 12 buildPythonPackage rec { 13 pname = "octodns-bind"; 14 - version = "0.0.7"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.9"; ··· 19 src = fetchFromGitHub { 20 owner = "octodns"; 21 repo = "octodns-bind"; 22 - rev = "v${version}"; 23 - hash = "sha256-cJbmGh0YNIu9fYH4It5SZG39ZsFoiOBERQXRd7kz8FY="; 24 }; 25 26 - nativeBuildInputs = [ 27 setuptools 28 ]; 29 30 - propagatedBuildInputs = [ 31 octodns 32 dnspython 33 ]; ··· 43 meta = { 44 description = "RFC compliant (Bind9) provider for octoDNS"; 45 homepage = "https://github.com/octodns/octodns-bind"; 46 - changelog = "https://github.com/octodns/octodns-bind/blob/${src.rev}/CHANGELOG.md"; 47 license = lib.licenses.mit; 48 - maintainers = lib.teams.octodns.members; 49 }; 50 }
··· 11 12 buildPythonPackage rec { 13 pname = "octodns-bind"; 14 + version = "1.0.1"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.9"; ··· 19 src = fetchFromGitHub { 20 owner = "octodns"; 21 repo = "octodns-bind"; 22 + tag = "v${version}"; 23 + hash = "sha256-ezLaNeqJoi3fcfwQFkiEyYUSlw7cTCikmv0qmPTzrvI="; 24 }; 25 26 + build-system = [ 27 setuptools 28 ]; 29 30 + dependencies = [ 31 octodns 32 dnspython 33 ]; ··· 43 meta = { 44 description = "RFC compliant (Bind9) provider for octoDNS"; 45 homepage = "https://github.com/octodns/octodns-bind"; 46 + changelog = "https://github.com/octodns/octodns-bind/blob/${src.tag}/CHANGELOG.md"; 47 license = lib.licenses.mit; 48 + teams = [ lib.teams.octodns ]; 49 }; 50 }