erpnext-nix/python/pypdf2.nix

14 lines
258 B
Nix
Raw Normal View History

2023-05-18 16:50:31 +02:00
{
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
2023-05-18 17:36:51 +02:00
pname = "PyPDF2";
2023-05-18 16:50:31 +02:00
version = "2.1.1";
src = fetchPypi {
inherit pname version;
2023-05-18 17:36:51 +02:00
sha256 = "sha256-Vy8TFLZDMGed1vtwN4H+M9Dyi1n7LP661efrntypJzg=";
2023-05-18 16:50:31 +02:00
};
propagatedBuildInputs = [];
}