Merge pull request #33626 from thanegill/rxpy-init

pythonPackages.rx: init at 1.6.0
This commit is contained in:
Frederik Rietdijk
2018-01-24 08:27:15 +01:00
committed by GitHub
2 changed files with 25 additions and 0 deletions

View File

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