nixpkgs/pkgs/development/python-modules/j2cli/default.nix
R. RyanTM e9b7e01828 python27Packages.j2cli: 0.3.7 -> 0.3.8
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
2019-05-12 19:58:46 +02:00

35 lines
710 B
Nix

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