python3Packages.libknot: 3.4.6 -> 3.4.7 (#415764)

authored by Martin Weinelt and committed by GitHub 5abd7e78 167694c6

+7 -7
+2 -2
pkgs/development/python-modules/libknot/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "libknot"; 15 - version = "3.4.6"; 15 + version = "3.4.7"; 16 16 pyproject = true; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-GthzZgu8UW/BoW5AJSriKSKHEQF4w9S0Vnl9DKOsimk="; 20 + hash = "sha256-RtaGVI9HN8ioegzx801NK5ZC85jqIO6MTj2V9Rj+xYs="; 21 21 }; 22 22 23 23 postPatch = ''
+5 -5
pkgs/servers/monitoring/prometheus/knot-exporter.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "knot-exporter"; 10 - version = "3.4.6"; 10 + version = "3.4.7"; 11 11 pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 pname = "knot_exporter"; 15 15 inherit version; 16 - hash = "sha256-OMBg7sjFU3GpVKiXNWVBr4Oa1v4MTr1jZMrR7MhzgVg="; 16 + hash = "sha256-NoPzeDP+0lLq6TKCCacLBQdCkQlFuffcImn3WJMHcwg="; 17 17 }; 18 18 19 - nativeBuildInputs = [ 19 + build-system = [ 20 20 python3.pkgs.hatchling 21 21 ]; 22 22 23 - propagatedBuildInputs = with python3.pkgs; [ 23 + dependencies = with python3.pkgs; [ 24 24 libknot 25 25 prometheus-client 26 26 psutil ··· 35 35 meta = with lib; { 36 36 description = "Prometheus exporter for Knot DNS"; 37 37 homepage = "https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/knot_exporter"; 38 - license = licenses.gpl3Only; 38 + license = licenses.gpl2Plus; 39 39 maintainers = with maintainers; [ 40 40 ma27 41 41 hexa