mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
python3Packages.wheezy-template: init at 3.1.0
This commit is contained in:
parent
1a828c711a
commit
935974daa0
23
pkgs/development/python-modules/wheezy-template/default.nix
Normal file
23
pkgs/development/python-modules/wheezy-template/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -12636,6 +12636,8 @@ self: super: with self; {
|
||||
|
||||
wheel-inspect = callPackage ../development/python-modules/wheel-inspect { };
|
||||
|
||||
wheezy-template = callPackage ../development/python-modules/wheezy-template { };
|
||||
|
||||
whichcraft = callPackage ../development/python-modules/whichcraft { };
|
||||
|
||||
whirlpool-sixth-sense = callPackage ../development/python-modules/whirlpool-sixth-sense { };
|
||||
|
Loading…
Reference in New Issue
Block a user