about summary refs log tree commit diff
path: root/pkgs/development/python-modules/getmac
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-12-11 18:32:45 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-02 11:31:47 +0100
commit3b3a03bce60ee09d0667c16ff32b9f70aa8fb5cd (patch)
treed3231019a9591baa9bfd43c928f3d11051a0dbfa /pkgs/development/python-modules/getmac
parent1c8c4e9b1e8457994e054a76edee4959ad000ca9 (diff)
python3Packages.getmac: 0.8.2 -> 0.8.3
Diffstat (limited to 'pkgs/development/python-modules/getmac')
-rw-r--r--pkgs/development/python-modules/getmac/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/getmac/default.nix b/pkgs/development/python-modules/getmac/default.nix
index 483539bc221fc..79f85ad956743 100644
--- a/pkgs/development/python-modules/getmac/default.nix
+++ b/pkgs/development/python-modules/getmac/default.nix
@@ -8,13 +8,14 @@
 
 buildPythonPackage rec {
   pname = "getmac";
-  version = "0.8.2";
+  version = "0.8.3";
+  format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "GhostofGoes";
     repo = pname;
     rev = version;
-    sha256 = "08d4iv5bjl1s4i9qhzf3pzjgj1rgbwi0x26qypf3ycgdj0a6gvh2";
+    sha256 = "sha256-X4uuYisyobCxhoywaSXBZjVxrPAbBiZrWUJAi2/P5mw=";
   };
 
   checkInputs = [
@@ -33,7 +34,9 @@ buildPythonPackage rec {
     "test_uuid_lanscan_iface"
   ];
 
-  pythonImportsCheck = [ "getmac" ];
+  pythonImportsCheck = [
+    "getmac"
+  ];
 
   meta = with lib; {
     description = "Python package to get the MAC address of network interfaces and hosts on the local network";