diff options
Diffstat (limited to 'pkgs/development/python-modules/libknot/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/libknot/default.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/libknot/default.nix b/pkgs/development/python-modules/libknot/default.nix index 96f900f2dd35..eb7a21ea53ef 100644 --- a/pkgs/development/python-modules/libknot/default.nix +++ b/pkgs/development/python-modules/libknot/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi +{ + lib, + buildPythonPackage, + fetchPypi, -# build-system -, hatchling + # build-system + hatchling, -# native dependencies -, knot-dns + # native dependencies + knot-dns, }: buildPythonPackage rec { @@ -25,13 +26,9 @@ buildPythonPackage rec { --replace "libknot.so%s" "${lib.getLib knot-dns}/lib/libknot.so%s" ''; - nativeBuildInputs = [ - hatchling - ]; + nativeBuildInputs = [ hatchling ]; - pythonImportsCheck = [ - "libknot" - ]; + pythonImportsCheck = [ "libknot" ]; meta = with lib; { description = "Python bindings for libknot"; |
