Files
nixpkgs/pkgs/development/python-modules/icmplib/default.nix
2026-07-15 14:04:39 -04:00

30 lines
632 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "icmplib";
version = "3.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "ValentinBELYN";
repo = "icmplib";
rev = "v${version}";
hash = "sha256-PnBcGiUvftz/KYg9Qd2GaIcF3OW4lYH301uI5/M5CBI=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "icmplib" ];
meta = {
description = "Python implementation of the ICMP protocol";
homepage = "https://github.com/ValentinBELYN/icmplib";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ fab ];
};
}