3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #207650 from r-ryantm/auto-update/python310Packages.urlextract

python310Packages.urlextract: 1.7.1 -> 1.8.0
This commit is contained in:
Fabian Affolter 2022-12-25 10:00:07 +01:00 committed by GitHub
commit f3b0a22436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "urlextract";
version = "1.7.1";
version = "1.8.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-DYg7Wd5Th4c+o4JeYrNDWDMTE1rGZMP1wNVfF7Kzv30=";
hash = "sha256-NXP2uBKBTv4GykbpHoLZhO2qPNB9qqqilqRnrZiBoDc=";
};
propagatedBuildInputs = [
@ -50,6 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Collects and extracts URLs from given text";
homepage = "https://github.com/lipoja/URLExtract";
changelog = "https://github.com/lipoja/URLExtract/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ilkecan ];
};