summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Mickens <cole.mickens@gmail.com>2020-01-19 01:11:09 -0800
committerJon <jonringer@users.noreply.github.com>2020-01-20 18:17:29 -0800
commit817d6c8ab2977b87a446e743febeb5d628617a7e (patch)
treef06344919b13af8680e0a029a2919610d90686c3
parentpythonPackages.flux_led: init at v0.22 (diff)
downloadnixpkgs-817d6c8ab2977b87a446e743febeb5d628617a7e.tar.gz
pythonPackages.getmac: init at 0.8.2
-rw-r--r--pkgs/development/python-modules/getmac/default.nix26
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/getmac/default.nix b/pkgs/development/python-modules/getmac/default.nix
new file mode 100644
index 000000000000..51ce0ef05031
--- /dev/null
+++ b/pkgs/development/python-modules/getmac/default.nix
@@ -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 ];
+ };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d761f7a8dabd..34f9d5e3d1d5 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -692,6 +692,8 @@ in {
geoip2 = callPackage ../development/python-modules/geoip2 { };
+ getmac = callPackage ../development/python-modules/getmac { };
+
gidgethub = callPackage ../development/python-modules/gidgethub { };
gin-config = callPackage ../development/python-modules/gin-config { };