nixpkgs/pkgs/development/python-modules/python-ctags3/default.nix
2018-08-25 07:38:23 +02:00

18 lines
422 B
Nix

{ 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;
};
}