python3Packages.ping3: init at 4.0.4

This commit is contained in:
Ben Siraphob 2023-07-10 22:16:50 +07:00
parent bcd0695735
commit 809effe63b
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, setuptools
, wheel
, fetchPypi
}:
buildPythonPackage rec {
pname = "ping3";
version = "4.0.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-HqEqz2dS1GZmFjQf18Y5PGZM/8UQxpPvBvc2+yZ6E7o=";
};
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "ping3" ];
meta = with lib; {
description = "A pure python3 version of ICMP ping implementation using raw socket";
homepage = "https://pypi.org/project/ping3";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View File

@ -7546,6 +7546,8 @@ self: super: with self; {
pfzy = callPackage ../development/python-modules/pfzy { };
ping3 = callPackage ../development/python-modules/ping3 { };
pg8000 = callPackage ../development/python-modules/pg8000 { };
pgcli = callPackage ../development/python-modules/pgcli { };