mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #139814 from ilkecan/urlextract
This commit is contained in:
commit
8b66c33d45
@ -4677,6 +4677,12 @@
|
||||
githubId = 36193715;
|
||||
name = "Lassi Haasio";
|
||||
};
|
||||
ilkecan = {
|
||||
email = "ilkecan@protonmail.com";
|
||||
github = "ilkecan";
|
||||
githubId = 40234257;
|
||||
name = "ilkecan bozdogan";
|
||||
};
|
||||
illegalprime = {
|
||||
email = "themichaeleden@gmail.com";
|
||||
github = "illegalprime";
|
||||
|
50
pkgs/development/python-modules/urlextract/default.nix
Normal file
50
pkgs/development/python-modules/urlextract/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ lib
|
||||
, appdirs
|
||||
, buildPythonPackage
|
||||
, dnspython
|
||||
, fetchPypi
|
||||
, filelock
|
||||
, idna
|
||||
, pytestCheckHook
|
||||
, uritools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "urlextract";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-yxOuiswFOJnAvxwTT++Zhk8nZWK2f4ePsQpUYI7EYS4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
filelock
|
||||
idna
|
||||
uritools
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
dnspython
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# fails with dns.resolver.NoResolverConfiguration due to network sandboxing
|
||||
"test_check_dns_enabled"
|
||||
"test_check_dns_find_urls"
|
||||
"test_dns_cache_init"
|
||||
"test_dns_cache_negative"
|
||||
"test_dns_cache_reuse"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "urlextract" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Collects and extracts URLs from given text";
|
||||
homepage = "https://github.com/lipoja/URLExtract";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ilkecan ];
|
||||
};
|
||||
}
|
@ -9364,6 +9364,8 @@ in {
|
||||
|
||||
url-normalize = callPackage ../development/python-modules/url-normalize { };
|
||||
|
||||
urlextract = callPackage ../development/python-modules/urlextract { };
|
||||
|
||||
urlgrabber = callPackage ../development/python-modules/urlgrabber { };
|
||||
|
||||
urllib3 = callPackage ../development/python-modules/urllib3 { };
|
||||
|
Loading…
Reference in New Issue
Block a user