erpnext-nix/python/pypdf2.nix

14 lines
258 B
Nix
Raw Normal View History

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