My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jinja2_time/default.nix

25 lines
473 B

{ lib
, buildPythonPackage
, fetchPypi
, arrow
, jinja2
}:
buildPythonPackage rec {
version = "0.2.0";
pname = "jinja2-time";
src = fetchPypi {
inherit pname version;
sha256 = "0h0dr7cfpjnjj8bgl2vk9063a53649pn37wnlkd8hxjy656slkni";
};
propagatedBuildInputs = [ arrow jinja2 ];
meta = with lib; {
homepage = "https://github.com/hackebrot/jinja2-time";
description = "Jinja2 Extension for Dates and Times";
license = licenses.mit;
};
}