gistyc: init at 1.3

This commit is contained in:
AndersonTorres 2021-11-17 21:12:03 -03:00
parent f78e747462
commit 3eaa93c722
3 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, certifi
, click
, requests
}:
buildPythonPackage rec {
pname = "gistyc";
version = "1.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-WVK45U9e3qyZFi9wSRHNi9+1u4TetlZkYXAZN7LVqhE=";
};
propagatedBuildInputs = [
certifi
click
requests
];
meta = with lib; {
homepage = "https://github.com/ThomasAlbin/gistyc";
description = "A Python based GitHub GIST management tool";
longDescription = ''
gistyc is a Python-based library that enables developers to create, update
and delete their GitHub GISTs. CLI capabilities allow you to execute the
routines from the shell and can be integrated into your project's CI/CD
pipeline to automatically create or update your GISTs (e.g., via GitHub
actions). Files are separated in GIST sections depending on the separation
blocks.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
};
}

View File

@ -1733,6 +1733,8 @@ with pkgs;
gitless = callPackage ../applications/version-management/gitless { python = python3; };
gistyc = with python3Packages; toPythonApplication gistyc;
gitlint = python3Packages.callPackage ../tools/misc/gitlint { };
gitter = callPackage ../applications/networking/instant-messengers/gitter { };

View File

@ -3098,6 +3098,8 @@ in {
gipc = callPackage ../development/python-modules/gipc { };
gistyc = callPackage ../development/python-modules/gistyc { };
git-annex-adapter =
callPackage ../development/python-modules/git-annex-adapter { };