Files
nixpkgs/pkgs/development/python-modules/dnslib/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
638 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 = [ ];
};
}