Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bd5d97eb6307
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a91572927ac
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 18, 2019

  1. 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
    r-ryantm authored and marsam committed Jun 18, 2019
    Copy the full SHA
    4f177b9 View commit details
  2. Merge pull request #63369 from r-ryantm/auto-update/python2.7-j2cli

    python27Packages.j2cli: 0.3.8 -> 0.3.10
    marsam authored Jun 18, 2019
    Copy the full SHA
    3a91572 View commit details
Showing with 5 additions and 7 deletions.
  1. +5 −7 pkgs/development/python-modules/j2cli/default.nix
12 changes: 5 additions & 7 deletions pkgs/development/python-modules/j2cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, nose
, jinja2
, pyyaml
}:

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.