erpnext-nix/python/weasyprint.nix

15 lines
281 B
Nix
Raw Normal View History

2023-05-18 14:50:31 +00:00
{
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "weasyprint";
version = "52.5";
src = fetchPypi {
pname = "WeasyPrint";
inherit version;
sha256 = "sha256-s36gLXXKBLq9e+ytc0FCa+MyrlYNjwLWZL+h6a+xhIE=";
};
propagatedBuildInputs = [];
}