Merge pull request #92719 from pjjw/update/mongodb-42

mongodb: 4.0.12 -> 4.2.8
This commit is contained in:
Jaka Hudoklin
2020-07-24 20:15:29 +02:00
committed by GitHub
10 changed files with 131 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, stdenv }:
buildPythonPackage rec {
pname = "Cheetah3";
version = "3.2.5";
src = fetchPypi {
inherit pname version;
sha256 = "ececc9ca7c58b9a86ce71eb95594c4619949e2a058d2a1af74c7ae8222515eb1";
};
doCheck = false; # Circular dependency
meta = {
homepage = "http://www.cheetahtemplate.org/";
description = "A template engine and code generation tool";
license = lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ pjjw ];
};
}