mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
26 lines
523 B
Nix
26 lines
523 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wheezy.template";
|
|
version = "3.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-hknPXHGPPNjRAr0TYVosPaTntsjwQjOKZBCU+qFlIHw=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "wheezy.template" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wheezytemplate.readthedocs.io/en/latest/";
|
|
description = "Lightweight template library";
|
|
mainProgram = "wheezy.template";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|