depot/third_party/nixpkgs/pkgs/development/python-modules/dnslib/default.nix

34 lines
656 B
Nix
Raw Normal View History

{
lib,
python,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dnslib";
version = "0.9.24";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-7xZ4aKMNTOfJC5ISedfs+5hr6OvFMPPmBQouy2hwfHY=";
};
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; [ ];
};
}