about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorThane Gill <me@thanegill.com>2018-01-10 10:29:37 -0800
committerThane Gill <me@thanegill.com>2018-01-23 10:03:17 -0800
commitdf43f58dc6a2f08013065ca37f3a9766eb0a80a1 (patch)
treebab50a87ed4768eb68dd46e3d542fe11e56a035f /pkgs/development/python-modules
parentbaaf8fd2b8fa061a8d073dd85714c5cc5c651c65 (diff)
downloadnixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar.gz
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar.bz2
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar.lz
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar.xz
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.tar.zst
nixlib-df43f58dc6a2f08013065ca37f3a9766eb0a80a1.zip
pythonPackages.rx: init at 1.6.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/rx/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rx/default.nix b/pkgs/development/python-modules/rx/default.nix
new file mode 100644
index 000000000000..6945d7486f66
--- /dev/null
+++ b/pkgs/development/python-modules/rx/default.nix
@@ -0,0 +1,23 @@
+{ lib, fetchFromGitHub, buildPythonPackage, nose }:
+
+buildPythonPackage rec {
+  pname = "rx";
+  version = "1.6.0";
+
+  # There are no tests on the pypi source
+  src = fetchFromGitHub {
+    owner = "ReactiveX";
+    repo = "rxpy";
+    rev = version;
+    sha256 = "174xi2j36igxmaqcgl5p64p31a7z19v62xb5czybjw72gpyyfyri";
+  };
+
+  checkInputs = [ nose ];
+
+  meta = {
+    homepage = https://github.com/ReactiveX/RxPY;
+    description = "Reactive Extensions for Python";
+    maintainers = with lib.maintainers; [ thanegill ];
+    license = lib.licenses.asl20;
+  };
+}