about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ctags3/default.nix
blob: 6ef8a757093f257ba7c45089bb116f3289c01c1a (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.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a2cb0b35f0d67bab47045d803dce8291a1500af11832b154f69b3785f2130daa";
  };

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