uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
42
pkgs/development/python-modules/gistyc/default.nix
Normal file
42
pkgs/development/python-modules/gistyc/default.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ 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
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"gistyc"
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue