diff options
Diffstat (limited to 'pkgs/development/python-modules/libknot/default.nix')
-rw-r--r-- | pkgs/development/python-modules/libknot/default.nix | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/libknot/default.nix b/pkgs/development/python-modules/libknot/default.nix index 96f900f2dd35..abaccdefa96f 100644 --- a/pkgs/development/python-modules/libknot/default.nix +++ b/pkgs/development/python-modules/libknot/default.nix @@ -1,22 +1,23 @@ -{ lib -, buildPythonPackage -, fetchPypi +{ + lib, + buildPythonPackage, + fetchPypi, -# build-system -, hatchling + # build-system + hatchling, -# native dependencies -, knot-dns + # native dependencies + knot-dns, }: buildPythonPackage rec { pname = "libknot"; - version = "3.3.5"; + version = "3.4.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-nEeDawZ/kChHQA3qoEKy+R+Uy7ogNL3ows3Yzs5OhpY="; + hash = "sha256-NJmOm2PIbH4GeDN1XlKKeLePHGatDQlWDPJtn5tUO3s="; }; postPatch = '' @@ -25,19 +26,14 @@ buildPythonPackage rec { --replace "libknot.so%s" "${lib.getLib knot-dns}/lib/libknot.so%s" ''; - nativeBuildInputs = [ - hatchling - ]; + build-system = [ hatchling ]; - pythonImportsCheck = [ - "libknot" - ]; + pythonImportsCheck = [ "libknot" ]; meta = with lib; { description = "Python bindings for libknot"; homepage = "https://gitlab.nic.cz/knot/knot-dns/-/tree/master/python/libknot"; license = licenses.gpl3Only; maintainers = with maintainers; [ hexa ]; - mainProgram = "libknot"; }; } |