summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ctags3
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-03-18 11:46:37 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-03-18 11:46:37 +0100
commitbd3280fbae09151db9368b8e11e4b4400ec13804 (patch)
treebb589d9f000ef782dd13ddccbdd803a3d1d422eb /pkgs/development/python-modules/python-ctags3
parentcc305174e233178f880b276447e459a71dcebab8 (diff)
downloadnixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar.gz
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar.bz2
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar.lz
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar.xz
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.tar.zst
nixpkgs-bd3280fbae09151db9368b8e11e4b4400ec13804.zip
pythonPackages.python-ctags3: init at 1.2.4
Diffstat (limited to 'pkgs/development/python-modules/python-ctags3')
-rw-r--r--pkgs/development/python-modules/python-ctags3/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-ctags3/default.nix b/pkgs/development/python-modules/python-ctags3/default.nix
new file mode 100644
index 00000000000..ba29154df3a
--- /dev/null
+++ b/pkgs/development/python-modules/python-ctags3/default.nix
@@ -0,0 +1,17 @@
+{ lib, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "python-ctags3";
+  version = "1.2.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "62e1d48a8cd88756767f3f5e3f1b1a81bc84deeb736f0c9480a5b5d066f63c3e";
+  };
+
+  meta = with lib; {
+    description = "Ctags indexing python bindings";
+    homepage = https://github.com/jonashaag/python-ctags3;
+    license = licenses.lgpl3Plus;
+  };
+}