Skip to content

Commit

Permalink
python3.pkgs.rx: 1.6.1 -> 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mweinelt committed Jul 6, 2020
1 parent bf13145 commit 887a51e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/development/python-modules/rx/default.nix
@@ -1,15 +1,16 @@
{ lib, fetchFromGitHub, buildPythonPackage, nose }:
{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, nose }:

buildPythonPackage rec {
pname = "rx";
version = "1.6.1";
version = "3.1.0";
disabled = pythonOlder "3.6";

# There are no tests on the pypi source
src = fetchFromGitHub {
owner = "ReactiveX";
repo = "rxpy";
rev = version;
sha256 = "14bca67a26clzcf2abz2yb8g9lfxffjs2l236dp966sp0lfbpsn5";
rev = "v${version}";
sha256 = "0rcwa8001il9p7s096b9gc5yld8cyxvrsmwh1gpc9b87j172z6ax";
};

checkInputs = [ nose ];
Expand Down

0 comments on commit 887a51e

Please sign in to comment.