From 31a313be47093eae5cd211094fa2bea38148f657 Mon Sep 17 00:00:00 2001 From: Petr Hodina 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