1{ lib, fetchFromGitHub, buildPythonPackage, nose }:
2
3buildPythonPackage rec {
4 pname = "rx";
5 version = "1.6.0";
6
7 # There are no tests on the pypi source
8 src = fetchFromGitHub {
9 owner = "ReactiveX";
10 repo = "rxpy";
11 rev = version;
12 sha256 = "174xi2j36igxmaqcgl5p64p31a7z19v62xb5czybjw72gpyyfyri";
13 };
14
15 checkInputs = [ nose ];
16
17 meta = {
18 homepage = https://github.com/ReactiveX/RxPY;
19 description = "Reactive Extensions for Python";
20 maintainers = with lib.maintainers; [ thanegill ];
21 license = lib.licenses.asl20;
22 };
23}