depot/third_party/nixpkgs/pkgs/development/python-modules/wheezy-template/default.nix

24 lines
517 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wheezy.template";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-4RAHysczaNzhKZjjS2bEdgFrtGFHH/weTVboQALslg8=";
};
pythonImportsCheck = [ "wheezy.template" ];
meta = with lib; {
homepage = "https://wheezytemplate.readthedocs.io/en/latest/";
description = "A lightweight template library";
license = licenses.mit;
maintainers = with maintainers; [ lilyinstarlight ];
};
}