python27Packages.j2cli: 0.3.8 -> 0.3.10

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python2.7-j2cli/versions
This commit is contained in:
R. RyanTM 2019-06-17 12:04:04 -07:00 committed by Mario Rodas
parent bd5d97eb63
commit 4f177b90df
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

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