unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#52997] [PATCH] gnu: Add python-facebook-sdk.
@ 2022-01-04  0:30 Giacomo Leidi via Guix-patches via
  2022-01-24 17:22 ` [bug#52997] (no subject) paul via Guix-patches via
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Giacomo Leidi via Guix-patches via @ 2022-01-04  0:30 UTC (permalink / raw)
  To: 52997; +Cc: Giacomo Leidi

* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index bc7e21ca85..90193590dd 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6264,3 +6264,32 @@ (define-public python-mwparserfromhell
 Full documentation may be found at
 @uref{https://mwparserfromhell.readthedocs.io, ReadTheDocs}")
     (license license:expat)))
+
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))

base-commit: 0c5a58e34d894b95d94c61aae0525a01fa18ecd2
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#52997] (no subject)
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
@ 2022-01-24 17:22 ` paul via Guix-patches via
  2022-03-05 23:27 ` [bug#52997] friendly ping paul via Guix-patches via
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: paul via Guix-patches via @ 2022-01-24 17:22 UTC (permalink / raw)
  To: 52997

[-- Attachment #1: Type: text/plain, Size: 65 bytes --]

This is a friendly ping :)

Thank you for your time and efforts


[-- Attachment #2: Type: text/html, Size: 285 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [bug#52997] friendly ping
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
  2022-01-24 17:22 ` [bug#52997] (no subject) paul via Guix-patches via
@ 2022-03-05 23:27 ` paul via Guix-patches via
  2022-03-05 23:28 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: paul via Guix-patches via @ 2022-03-05 23:27 UTC (permalink / raw)
  To: 52997

Dear all,

this is just a ping, thank you for your time and efforts . I'm attaching 
an updated patchset.

paul





^ permalink raw reply	[flat|nested] 10+ messages in thread

* [bug#52997] [PATCH] gnu: Add python-facebook-sdk.
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
  2022-01-24 17:22 ` [bug#52997] (no subject) paul via Guix-patches via
  2022-03-05 23:27 ` [bug#52997] friendly ping paul via Guix-patches via
@ 2022-03-05 23:28 ` Giacomo Leidi via Guix-patches via
  2022-07-01 21:43 ` goodoldpaul--- via Guix-patches via
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Giacomo Leidi via Guix-patches via @ 2022-03-05 23:28 UTC (permalink / raw)
  To: 52997; +Cc: Giacomo Leidi

* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 240c58b665..e787c20d7e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6390,3 +6390,32 @@ (define-public python-tweepy
     (description "This package provides @code{Tweepy}, an easy-to-use Python
 library for accessing the Twitter API.")
     (license license:expat)))
+
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))

base-commit: 0c6bf910efd090f0aa0479ba727e5e68655e9b68
-- 
2.34.0





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#52997] [PATCH] gnu: Add python-facebook-sdk.
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (2 preceding siblings ...)
  2022-03-05 23:28 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
@ 2022-07-01 21:43 ` goodoldpaul--- via Guix-patches via
  2023-04-12 21:29   ` goodoldpaul--- via Guix-patches via
  2022-07-01 21:43 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: goodoldpaul--- via Guix-patches via @ 2022-07-01 21:43 UTC (permalink / raw)
  To: 52997

Dear all,
this is a friendly ping :) . I'm sending an updated patch.


Thank you for your time and effort,

giacomo




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [bug#52997] [PATCH] gnu: Add python-facebook-sdk.
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (3 preceding siblings ...)
  2022-07-01 21:43 ` goodoldpaul--- via Guix-patches via
@ 2022-07-01 21:43 ` Giacomo Leidi via Guix-patches via
  2023-04-12 21:30 ` [bug#52997] [PATCH-v2] " Giacomo Leidi via Guix-patches via
  2024-05-03 22:48 ` bug#52997: Close paul via Guix-patches via
  6 siblings, 0 replies; 10+ messages in thread
From: Giacomo Leidi via Guix-patches via @ 2022-07-01 21:43 UTC (permalink / raw)
  To: 52997; +Cc: Giacomo Leidi

* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6f951595c8..fc61951b3c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7183,6 +7183,35 @@ (define-public python-tweepy
 library for accessing the Twitter API.")
     (license license:expat)))
 
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))
+
 (define-public python-quart
   (package
     (name "python-quart")

base-commit: aba1ee5553099d45eb22d9ca1f685502146a49d0
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#52997] [PATCH] gnu: Add python-facebook-sdk.
  2022-07-01 21:43 ` goodoldpaul--- via Guix-patches via
@ 2023-04-12 21:29   ` goodoldpaul--- via Guix-patches via
  2023-04-12 21:49     ` [bug#53019] [PATCH] gnu: Add aerich goodoldpaul--- via Guix-patches via
  0 siblings, 1 reply; 10+ messages in thread
From: goodoldpaul--- via Guix-patches via @ 2023-04-12 21:29 UTC (permalink / raw)
  To: 52997, jgart, lars

Dear all,
this is a friendly ping :) . I'm sending an updated patch.

Thank you for your time and effort,

  giacomo




^ permalink raw reply	[flat|nested] 10+ messages in thread

* [bug#52997] [PATCH-v2] gnu: Add python-facebook-sdk.
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (4 preceding siblings ...)
  2022-07-01 21:43 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
@ 2023-04-12 21:30 ` Giacomo Leidi via Guix-patches via
  2024-05-03 22:48 ` bug#52997: Close paul via Guix-patches via
  6 siblings, 0 replies; 10+ messages in thread
From: Giacomo Leidi via Guix-patches via @ 2023-04-12 21:30 UTC (permalink / raw)
  To: 52997; +Cc: Giacomo Leidi, lars

* gnu/packages/python-web.scm (python-facebook-sdk): New variable.
---
 gnu/packages/python-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 495e13acfe..9eae6d7616 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7844,6 +7844,35 @@ (define-public python-tweepy
 library for accessing the Twitter API.")
     (license license:expat)))
 
+(define-public python-facebook-sdk
+  (package
+    (name "python-facebook-sdk")
+    (version "3.1.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mobolic/facebook-sdk")
+          (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0p7p0wvcspd9p8d6r25bgjbf0ihdw5g1jw3dylwngrazdmc3g36b"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests require network access.
+     `(#:tests? #f))
+    (propagated-inputs `(("python-requests" ,python-requests)))
+    (home-page "https://facebook-sdk.readthedocs.io")
+    (synopsis
+      "Facebook Graph API client in Python")
+    (description
+      "This client library is designed to support the Facebook Graph API and
+the official Facebook JavaScript SDK, which is the canonical way to implement
+Facebook authentication.")
+    (license license:asl2.0)))
+
 (define-public python-quart
   (package
     (name "python-quart")

base-commit: dd3e5e71104a2bcbad80e52e062a144ea96b8c6a
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [bug#53019] [PATCH] gnu: Add aerich.
  2023-04-12 21:29   ` goodoldpaul--- via Guix-patches via
@ 2023-04-12 21:49     ` goodoldpaul--- via Guix-patches via
  0 siblings, 0 replies; 10+ messages in thread
From: goodoldpaul--- via Guix-patches via @ 2023-04-12 21:49 UTC (permalink / raw)
  To: jgart, lars, 53019, maximedevos

Dear all,
this is a friendly ping :) . I'm sending an updated patchset.

Thank you for your time and effort,

  giacomo




^ permalink raw reply	[flat|nested] 10+ messages in thread

* bug#52997: Close
  2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
                   ` (5 preceding siblings ...)
  2023-04-12 21:30 ` [bug#52997] [PATCH-v2] " Giacomo Leidi via Guix-patches via
@ 2024-05-03 22:48 ` paul via Guix-patches via
  6 siblings, 0 replies; 10+ messages in thread
From: paul via Guix-patches via @ 2024-05-03 22:48 UTC (permalink / raw)
  To: 52997-done






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-05-03 23:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04  0:30 [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
2022-01-24 17:22 ` [bug#52997] (no subject) paul via Guix-patches via
2022-03-05 23:27 ` [bug#52997] friendly ping paul via Guix-patches via
2022-03-05 23:28 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
2022-07-01 21:43 ` goodoldpaul--- via Guix-patches via
2023-04-12 21:29   ` goodoldpaul--- via Guix-patches via
2023-04-12 21:49     ` [bug#53019] [PATCH] gnu: Add aerich goodoldpaul--- via Guix-patches via
2022-07-01 21:43 ` [bug#52997] [PATCH] gnu: Add python-facebook-sdk Giacomo Leidi via Guix-patches via
2023-04-12 21:30 ` [bug#52997] [PATCH-v2] " Giacomo Leidi via Guix-patches via
2024-05-03 22:48 ` bug#52997: Close paul via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).