mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
gistyc: init at 1.3
This commit is contained in:
parent
f78e747462
commit
3eaa93c722
38
pkgs/development/python-modules/gistyc/default.nix
Normal file
38
pkgs/development/python-modules/gistyc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user