summary refs log tree commit diff
path: root/pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix')
-rw-r--r--pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix b/pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
index efe39aa1600..d4f3306697d 100644
--- a/pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
+++ b/pkgs/applications/audio/pulseaudio-dlna/zeroconf.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib
 , buildPythonPackage
 , fetchPypi
 , ifaddr
@@ -19,9 +19,9 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [ netifaces six enum-compat ifaddr ]
-    ++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
+    ++ lib.optionals (pythonOlder "3.5") [ typing ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A pure python implementation of multicast DNS service discovery";
     homepage = "https://github.com/jstasiak/python-zeroconf";
     license = licenses.lgpl21;