Merge pull request #63369 from r-ryantm/auto-update/python2.7-j2cli

python27Packages.j2cli: 0.3.8 -> 0.3.10
This commit is contained in:
Mario Rodas 2019-06-18 06:32:36 -05:00 committed by GitHub
commit 3a91572927
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, nose
, jinja2
, pyyaml
@ -9,21 +8,20 @@
buildPythonPackage rec {
pname = "j2cli";
version = "0.3.8";
disabled = isPy3k;
version = "0.3.10";
src = fetchPypi {
inherit pname version;
sha256 = "1f1a5fzap4ji5l7x8bprrgcpy1071lpa9g5h8jz7iqzgqynkaygi";
sha256 = "6f6f643b3fa5c0f72fbe9f07e246f8e138052b9f689e14c7c64d582c59709ae4";
};
buildInputs = [ nose ];
checkInputs = [ nose ];
propagatedBuildInputs = [ jinja2 pyyaml ];
meta = with stdenv.lib; {
homepage = https://github.com/kolypto/j2cli;
homepage = "https://github.com/kolypto/j2cli";
description = "Jinja2 Command-Line Tool";
license = licenses.bsd3;
license = licenses.bsd2;
longDescription = ''
J2Cli is a command-line tool for templating in shell-scripts,
leveraging the Jinja2 library.