about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-ctags3/default.nix
blob: bc7b848499689cd596d4adca80364acd18b0ab3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "python-ctags3";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "69029185ec70db4180be2b58e9a7245700c7ddcdc9049bf0641448f439112176";
  };

  meta = with lib; {
    description = "Ctags indexing python bindings";
    homepage = "https://github.com/jonashaag/python-ctags3";
    license = licenses.lgpl3Plus;
  };
}