34 lines
663 B
Nix
34 lines
663 B
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dnslib";
|
|
version = "0.9.23";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-MQGW0+OM4gUbYe670vHQj8yTT6M2DyIDGGTRbv6Lync=";
|
|
};
|
|
|
|
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 = with maintainers; [ delroth ];
|
|
};
|
|
}
|