python3.pkgs.rx: 1.6.1 -> 3.1.0

This commit is contained in:
Jörg Thalheim 2020-07-06 23:29:01 +01:00 committed by Martin Weinelt
parent bf13145ee5
commit 887a51e642
No known key found for this signature in database
GPG Key ID: BD4AA0528F63F17E

View File

@ -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 ];