forked from axeman/erpnext-nix
15 lines
281 B
Nix
15 lines
281 B
Nix
|
{
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "weasyprint";
|
||
|
version = "52.5";
|
||
|
src = fetchPypi {
|
||
|
pname = "WeasyPrint";
|
||
|
inherit version;
|
||
|
sha256 = "sha256-s36gLXXKBLq9e+ytc0FCa+MyrlYNjwLWZL+h6a+xhIE=";
|
||
|
};
|
||
|
propagatedBuildInputs = [];
|
||
|
}
|