summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2017-06-05 19:28:15 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2017-06-05 19:28:38 +0200
commit10785e8960b905f5e41ef8db014530bfbd033a8f (patch)
tree88411e13720f879acb6c6b6122e171fda739044f /pkgs/development/python-modules
parent721ab5407263a9c2346bd98e588f6bb7014e3ece (diff)
downloadnixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar.gz
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar.bz2
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar.lz
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar.xz
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.tar.zst
nixpkgs-10785e8960b905f5e41ef8db014530bfbd033a8f.zip
python.pkgs.systemd: fix eval
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/systemd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/systemd/default.nix b/pkgs/development/python-modules/systemd/default.nix
index c856e019f46..4786e7eb7e1 100644
--- a/pkgs/development/python-modules/systemd/default.nix
+++ b/pkgs/development/python-modules/systemd/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
 
   doCheck = false;
 
-  meta = with stdenv.licenses; {
+  meta = with stdenv.lib; {
     description = "Python module for native access to the systemd facilities";
     homepage = http://www.freedesktop.org/software/systemd/python-systemd/;
     license = licenses.lgpl21;