mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
python3Packages.ping3: init at 4.0.4
This commit is contained in:
parent
bcd0695735
commit
809effe63b
31
pkgs/development/python-modules/ping3/default.nix
Normal file
31
pkgs/development/python-modules/ping3/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user