about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rx/default.nix
blob: 6945d7486f66347833b4512dcfa7461731a80726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
  };
}