depot/third_party/nixpkgs/pkgs/development/python-modules/libknot/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

39 lines
856 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
# native dependencies
knot-dns,
}:
buildPythonPackage rec {
pname = "libknot";
version = "3.4.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NJmOm2PIbH4GeDN1XlKKeLePHGatDQlWDPJtn5tUO3s=";
};
postPatch = ''
substituteInPlace libknot/__init__.py \
--replace "libknot%s.dylib" "${lib.getLib knot-dns}/lib/libknot%s.dylib" \
--replace "libknot.so%s" "${lib.getLib knot-dns}/lib/libknot.so%s"
'';
build-system = [ hatchling ];
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 ];
};
}