summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 14:21:52 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-03 14:21:52 +0200
commit88208439ea08ff908a7a09ed08dc18a2ad7ee03c (patch)
treee5b67bae6d7eed6b41891d1591d1c67eb880f390
parent433ffc32eaa8de6cbeae8d25e5c20deb041d20cb (diff)
downloadnixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar.gz
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar.bz2
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar.lz
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar.xz
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.tar.zst
nixlib-88208439ea08ff908a7a09ed08dc18a2ad7ee03c.zip
python.pkgs.ansi: add meta
-rw-r--r--pkgs/development/python-modules/ansi/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/ansi/default.nix b/pkgs/development/python-modules/ansi/default.nix
index a79de55d2eb0..77b93ce890e4 100644
--- a/pkgs/development/python-modules/ansi/default.nix
+++ b/pkgs/development/python-modules/ansi/default.nix
@@ -1,4 +1,4 @@
-{ buildPythonPackage, fetchPypi }:
+{ lib, buildPythonPackage, fetchPypi }:
 
 buildPythonPackage rec {
   pname = "ansi";
@@ -12,4 +12,10 @@ buildPythonPackage rec {
   checkPhase = ''
     python -c "import ansi.color"
   '';
+
+  meta = with lib; {
+    description = "ANSI cursor movement and graphics";
+    homepage = https://github.com/tehmaze/ansi/;
+    license = licenses.mit;
+  };
 }