emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#41206: closed ([PATCH] gnu: Add python-selenium)


From: GNU bug Tracking System
Subject: bug#41206: closed ([PATCH] gnu: Add python-selenium)
Date: Fri, 15 May 2020 10:26:02 +0000

Your message dated Fri, 15 May 2020 12:25:16 +0200
with message-id <address@hidden>
and subject line Re: [bug#41206] [PATCH] gnu: Add python-selenium
has caused the debbugs.gnu.org bug report #41206,
regarding [PATCH] gnu: Add python-selenium
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
41206: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41206
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-selenium Date: Tue, 12 May 2020 13:29:03 +0200 User-agent: mu4e 1.4.4; emacs 26.3
---
 gnu/packages/python-web.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9be92053b1..32a4d2b756 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3746,3 +3746,26 @@ in Python with a focus on correctness and simplicity.
 Built on top of @code{asyncio}, Python's standard asynchronous I/O framework,
 it provides an elegant coroutine-based API.")
     (license license:bsd-3)))
+
+(define-public python-selenium
+  (package
+    (name "python-selenium")
+    (version "3.141.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "selenium" version))
+       (sha256
+        (base32
+         "039hf9knvl4s3hp21bzwsp1g5ri9gxsh504dp48lc6nr1av35byy"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-urllib3" ,python-urllib3)))
+    (home-page
+     "https://github.com/SeleniumHQ/selenium/";)
+    (synopsis "Python bindings for Selenium")
+    (description "Selenium enables web browser automation.
+Selenium specifically provides infrastructure for the W3C WebDriver 
specification
+— a platform and language-neutral coding interface compatible with all
+major web browsers.")
+    (license license:asl2.0)))
-- 
2.26.2



--- End Message ---
--- Begin Message --- Subject: Re: [bug#41206] [PATCH] gnu: Add python-selenium Date: Fri, 15 May 2020 12:25:16 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hi,

Edouard Klein <address@hidden> skribis:

> ---
>  gnu/packages/python-web.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)

[...]

> +    (synopsis "Python bindings for Selenium")
> +    (description "Selenium enables web browser automation.
> +Selenium specifically provides infrastructure for the W3C WebDriver 
> specification
> +— a platform and language-neutral coding interface compatible with all
> +major web browsers.")

I added a commit log that follows our convention and committed.

Thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]