2025-03-11 08:57:18 +00:00

34 lines
638 B
Nix

{
lib,
python,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dnslib";
version = "0.9.26";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-vlaFdTQ5Cy+9ApNScAGbrMXmtBHRVss5IaxVp/tR8ag=";
};
checkPhase = ''
VERSIONS=${python.interpreter} ./run_tests.sh
'';
pythonImportsCheck = [ "dnslib" ];
meta = with lib; {
description = "Simple library to encode/decode DNS wire-format packets";
homepage = "https://github.com/paulc/dnslib";
license = licenses.bsd2;
maintainers = [ ];
};
}