Unverified Commit 4a139b4e authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #241797 from r-ryantm/auto-update/python310Packages.pydyf

python310Packages.pydyf: 0.6.0 -> 0.7.0
parents a79b17f7 d8286eb9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "pydyf";
  version = "0.6.0";
  version = "0.7.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-tEo4hV1+R7dAs80xq2Oi9bmyeTkx1QsMyu07t7hpEvw=";
    hash = "sha256-paiMsG5b62Sh7yFH7oebDlE59f24J/2i/PFKAYx7EeY=";
  };

  postPatch = ''
@@ -42,6 +42,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Low-level PDF generator written in Python and based on PDF specification 1.7";
    homepage = "https://doc.courtbouillon.org/pydyf/stable/";
    changelog = "https://github.com/CourtBouillon/pydyf/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ rprecenth ];
  };