* [PATCH 1/2] gnu: Add python-rx.
@ 2023-01-16 11:00 phodina via
2023-01-16 11:04 ` phodina
0 siblings, 1 reply; 3+ messages in thread
From: phodina via @ 2023-01-16 11:00 UTC (permalink / raw)
To: help-guix; +Cc: jgart, Lars-Dominik Braun
[-- Attachment #1: Type: text/plain, Size: 56 bytes --]
Hi,
here are two Python modules to upstream.
----
Petr
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python-rx.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-python-rx.patch, Size: 1265 bytes --]
From 31a313be47093eae5cd211094fa2bea38148f657 Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Mon, 16 Jan 2023 11:40:34 +0100
Subject: [PATCH 1/2] gnu: Add python-rx.
* gnu/packages/python-xyz.scm (python-rx): New variable.
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 32d826d3c5..a9e0981e9a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4028,6 +4028,25 @@ (define-public python-roman
to Roman Numerals.")
(license license:psfl)))
+(define-public python-rx
+ (package
+ (name "python-rx")
+ (version "3.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "Rx" version))
+ (sha256
+ (base32
+ "076rcgcyqqpr5y7jyg7za6ngfm75qbx0kzfwyyi5sj5a8lmwlmxn"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:tests? #f)) ;no test suite
+ (native-inputs (list python-pytest))
+ (home-page "https://reactivex.io/")
+ (synopsis "Reactive Extensions for Python")
+ (description "This package provides Reactive Extensions for Python.")
+ (license license:expat)))
+
(define-public python-unidecode
(package
(name "python-unidecode")
--
2.38.1
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-python-injector.patch --]
[-- Type: text/x-patch; name=0002-gnu-Add-python-injector.patch, Size: 1571 bytes --]
From a396f110c1111527b6f06839e91ea89d1d1724c6 Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Mon, 16 Jan 2023 11:41:00 +0100
Subject: [PATCH 2/2] gnu: Add python-injector.
* gnu/packages/python-xyz.scm (python-injector): New variable.
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9e0981e9a..ebada3d15e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20228,6 +20228,31 @@ (define-public python-iniconfig
@end itemize")
(license license:expat)))
+(define-public python-injector
+ (package
+ (name "python-injector")
+ (version "0.20.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "injector" version))
+ (sha256
+ (base32
+ "0fi2zw6nffl91ihx25wfvr5mq8jyrdx2pa56wdhww2c35ydb8qc6"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-typing-extensions))
+ (native-inputs (list python-black
+ python-check-manifest
+ python-dataclasses
+ python-mypy
+ python-pytest
+ python-pytest-cov))
+ (home-page "https://github.com/python-injector/injector")
+ (synopsis "Python dependency injection framework")
+ (description
+ "This package provides Python dependency injection framework - inspired by
+Guice.")
+ (license license:bsd-3)))
+
(define-public python-mamba
(package
(name "python-mamba")
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] gnu: Add python-rx.
2023-01-16 11:00 [PATCH 1/2] gnu: Add python-rx phodina via
@ 2023-01-16 11:04 ` phodina
2023-02-08 14:37 ` [bug#60857] Include missing patches phodina via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: phodina @ 2023-01-16 11:04 UTC (permalink / raw)
To: Guix Patches; +Cc: jgart, Lars-Dominik Braun, help-guix
Hello,
sorry for this email, the correct recipient should have been guix-patches@gnu.org.
----
Petr
------- Original Message -------
On Monday, January 16th, 2023 at 12:00 PM, phodina via <help-guix@gnu.org> wrote:
> Hi,
>
> here are two Python modules to upstream.
>
> ----
> Petr
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#60857] Include missing patches
2023-01-16 11:04 ` phodina
@ 2023-02-08 14:37 ` phodina via Guix-patches via
0 siblings, 0 replies; 3+ messages in thread
From: phodina via Guix-patches via @ 2023-02-08 14:37 UTC (permalink / raw)
To: 60857@debbugs.gnu.org; +Cc: jgart
[-- Attachment #1.1: Type: text/plain, Size: 102 bytes --]
Hi,
here are the patches. Unfortunately, they were not included from the original message.
----
Petr
[-- Attachment #1.2: Type: text/html, Size: 189 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python-rx.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-python-rx.patch, Size: 1265 bytes --]
From 31a313be47093eae5cd211094fa2bea38148f657 Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Mon, 16 Jan 2023 11:40:34 +0100
Subject: [PATCH 1/2] gnu: Add python-rx.
* gnu/packages/python-xyz.scm (python-rx): New variable.
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 32d826d3c5..a9e0981e9a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4028,6 +4028,25 @@ (define-public python-roman
to Roman Numerals.")
(license license:psfl)))
+(define-public python-rx
+ (package
+ (name "python-rx")
+ (version "3.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "Rx" version))
+ (sha256
+ (base32
+ "076rcgcyqqpr5y7jyg7za6ngfm75qbx0kzfwyyi5sj5a8lmwlmxn"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:tests? #f)) ;no test suite
+ (native-inputs (list python-pytest))
+ (home-page "https://reactivex.io/")
+ (synopsis "Reactive Extensions for Python")
+ (description "This package provides Reactive Extensions for Python.")
+ (license license:expat)))
+
(define-public python-unidecode
(package
(name "python-unidecode")
--
2.38.1
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-python-injector.patch --]
[-- Type: text/x-patch; name=0002-gnu-Add-python-injector.patch, Size: 1571 bytes --]
From a396f110c1111527b6f06839e91ea89d1d1724c6 Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Mon, 16 Jan 2023 11:41:00 +0100
Subject: [PATCH 2/2] gnu: Add python-injector.
* gnu/packages/python-xyz.scm (python-injector): New variable.
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9e0981e9a..ebada3d15e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20228,6 +20228,31 @@ (define-public python-iniconfig
@end itemize")
(license license:expat)))
+(define-public python-injector
+ (package
+ (name "python-injector")
+ (version "0.20.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "injector" version))
+ (sha256
+ (base32
+ "0fi2zw6nffl91ihx25wfvr5mq8jyrdx2pa56wdhww2c35ydb8qc6"))))
+ (build-system python-build-system)
+ (propagated-inputs (list python-typing-extensions))
+ (native-inputs (list python-black
+ python-check-manifest
+ python-dataclasses
+ python-mypy
+ python-pytest
+ python-pytest-cov))
+ (home-page "https://github.com/python-injector/injector")
+ (synopsis "Python dependency injection framework")
+ (description
+ "This package provides Python dependency injection framework - inspired by
+Guice.")
+ (license license:bsd-3)))
+
(define-public python-mamba
(package
(name "python-mamba")
--
2.38.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-02-08 14:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-16 11:00 [PATCH 1/2] gnu: Add python-rx phodina via
2023-01-16 11:04 ` phodina
2023-02-08 14:37 ` [bug#60857] Include missing patches phodina via Guix-patches via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.