remove shinto-cli

master
Christian Ulrich 2021-08-14 00:05:23 +02:00
parent fcd9fc54bf
commit 4887ce953e
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
2 changed files with 0 additions and 37 deletions

View File

@ -36,8 +36,6 @@ self: super:
quicly = super.callPackage ./pkgs/quicly/default.nix { };
shinto-cli = super.callPackage ./pkgs/shinto-cli { };
squashfs-avm-be = super.callPackage ./pkgs/squashfs-avm-be/default.nix { };
ui = super.callPackage ./pkgs/nim-packages/ui.nix { };

View File

@ -1,35 +0,0 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, nose
, jinja2
, pyyaml
}:
buildPythonPackage rec {
pname = "shinto-cli";
version = "0.5.0";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "15ccc9mlw12qp5q8sdcfb7559bc4w1j39ch0c95d1n7c6ifffhn1";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ jinja2 pyyaml ];
meta = with lib; {
homepage = https://github.com/kolypto/j2cli;
description = "Jinja2 Command-Line Tool";
license = licenses.bsd3;
longDescription = ''
shinto-cli is a command-line tool for templating in shell-scripts,
leveraging the Jinja2 library.
'';
maintainers = with maintainers; [ ];
};
}