mob next [ci-skip] [ci skip] [skip ci]

lastFile:pkgs/python/py-moneyed/default.nix
This commit is contained in:
2025-10-08 16:27:45 +07:00
parent 4cda4d067a
commit 1e2f44f782
17 changed files with 271 additions and 72 deletions

View File

@@ -1,4 +1,11 @@
{ lib, buildPythonPackage, fetchFromGitHub, setuptools, django, weasyprint, }:
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
django,
weasyprint,
}:
buildPythonPackage rec {
pname = "django-weasyprint";
@@ -14,16 +21,17 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [ django weasyprint ];
dependencies = [
django
weasyprint
];
pythonImportsCheck = [ "django_weasyprint" ];
meta = {
description =
"A Django class-based view generating PDF resposes using WeasyPrint";
description = "A Django class-based view generating PDF resposes using WeasyPrint";
homepage = "https://github.com/fdemmer/django-weasyprint";
changelog =
"https://github.com/fdemmer/django-weasyprint/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/fdemmer/django-weasyprint/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};