nixpkgs/pkgs/development/python-modules/dnslib/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

34 lines
638 B
Nix

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