-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ stdenv, buildPythonPackage, fetchPypi }: | ||
|
||
buildPythonPackage rec { | ||
pname = "pdfrw"; | ||
version = "0.4"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "1x1yp63lg3jxpg9igw8lh5rc51q353ifsa1bailb4qb51r54kh0d"; | ||
}; | ||
|
||
# tests require the extra download of github.com/pmaupin/static_pdfs | ||
doCheck = false; | ||
|
||
meta = with stdenv.lib; { | ||
description = "pdfrw is a pure Python library that reads and writes PDFs."; | ||
homepage = "https://github.com/pmaupin/pdfrw"; | ||
maintainers = with maintainers; [ teto ]; | ||
license = licenses.mit; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters