mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pythonPackages.getmac: init at 0.8.2
This commit is contained in:
parent
ad6e8aa7c3
commit
817d6c8ab2
26
pkgs/development/python-modules/getmac/default.nix
Normal file
26
pkgs/development/python-modules/getmac/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
|
, pytest, pytest-benchmark, pytest-mock }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "getmac";
|
||||||
|
version = "0.8.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GhostofGoes";
|
||||||
|
repo = "getmac";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "08d4iv5bjl1s4i9qhzf3pzjgj1rgbwi0x26qypf3ycgdj0a6gvh2";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytest-benchmark pytest-mock ];
|
||||||
|
checkPhase = ''
|
||||||
|
pytest --ignore tests/test_cli.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/GhostofGoes/getmac";
|
||||||
|
description = "Pure-Python package to get the MAC address of network interfaces and hosts on the local network.";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ colemickens ];
|
||||||
|
};
|
||||||
|
}
|
@ -692,6 +692,8 @@ in {
|
|||||||
|
|
||||||
geoip2 = callPackage ../development/python-modules/geoip2 { };
|
geoip2 = callPackage ../development/python-modules/geoip2 { };
|
||||||
|
|
||||||
|
getmac = callPackage ../development/python-modules/getmac { };
|
||||||
|
|
||||||
gidgethub = callPackage ../development/python-modules/gidgethub { };
|
gidgethub = callPackage ../development/python-modules/gidgethub { };
|
||||||
|
|
||||||
gin-config = callPackage ../development/python-modules/gin-config { };
|
gin-config = callPackage ../development/python-modules/gin-config { };
|
||||||
|
Loading…
Reference in New Issue
Block a user