about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dot2tex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/dot2tex/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/dot2tex/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/dot2tex/default.nix b/nixpkgs/pkgs/development/python-modules/dot2tex/default.nix
index 03445f79117f..2626f420676a 100644
--- a/nixpkgs/pkgs/development/python-modules/dot2tex/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/dot2tex/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , python
 , buildPythonPackage
 , fetchPypi
@@ -37,7 +37,7 @@ buildPythonPackage rec {
     ${python.interpreter} tests/test_dot2tex.py
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Convert graphs generated by Graphviz to LaTeX friendly formats";
     homepage = "https://github.com/kjellmf/dot2tex";
     license = licenses.mit;