Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pdfrw / default.nix
blob8eccbfbb7f1f7073bac2766d1cd4766a74679ff2
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "pdfrw";
5   version = "0.4";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1x1yp63lg3jxpg9igw8lh5rc51q353ifsa1bailb4qb51r54kh0d";
11   };
13   # tests require the extra download of github.com/pmaupin/static_pdfs
14   doCheck = false;
16   meta = with lib; {
17     description = "pdfrw is a pure Python library that reads and writes PDFs.";
18     homepage = "https://github.com/pmaupin/pdfrw";
19     maintainers = with maintainers; [ teto ];
20     license =  licenses.mit;
21   };