Unverified Commit f5e81d80 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.striprtf: add changelog to meta

parent cac77529
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
@@ -8,9 +9,11 @@ buildPythonPackage rec {
  version = "0.0.22";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-T7rb6EJPQStbJjv3L7PA2rTdtXTWCd1NCE9uK4sEQCs=";
    hash = "sha256-T7rb6EJPQStbJjv3L7PA2rTdtXTWCd1NCE9uK4sEQCs=";
  };

  pythonImportsCheck = [
@@ -18,6 +21,7 @@ buildPythonPackage rec {
  ];

  meta = with lib; {
    changelog = "https://github.com/joshy/striprtf/blob/v${version}/CHANGELOG.md";
    homepage = "https://github.com/joshy/striprtf";
    description = "A simple library to convert rtf to text";
    maintainers = with maintainers; [ aanderse ];