python3Packages.wikitextparser: 0.55.5 -> 0.55.13 (#308267)

This commit is contained in:
Viorel-Cătălin Răpițeanu 2024-05-02 15:35:19 +03:00 committed by GitHub
parent 6034d354d7
commit 79f4b5b105
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
{ buildPythonPackage
, fetchFromGitHub
, flit-core
, lib
, setuptools
, pytestCheckHook
@ -9,14 +10,14 @@
buildPythonPackage rec {
pname = "wikitextparser";
version = "0.55.5";
version = "0.55.13";
format = "pyproject";
src = fetchFromGitHub {
owner = "5j9";
repo = "wikitextparser";
rev = "v${version}";
hash = "sha256-cmzyRbq4tCbuyrNnT0UYxoxuwXrFkIcWdrogSTfxSys=";
hash = "sha256-qLctOX0BsKAn2JzfmV2sTLJ/KcNfaJFAjOB3pxd5LQI=";
};
nativeBuildInputs = [
@ -24,6 +25,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
flit-core
wcwidth
regex
];