mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.rx: init at 1.6.0
This commit is contained in:
parent
baaf8fd2b8
commit
df43f58dc6
23
pkgs/development/python-modules/rx/default.nix
Normal file
23
pkgs/development/python-modules/rx/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -358,6 +358,8 @@ in {
|
||||
|
||||
rhpl = disabledIf isPy3k (callPackage ../development/python-modules/rhpl {});
|
||||
|
||||
rx = callPackage ../development/python-modules/rx { };
|
||||
|
||||
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
||||
|
||||
simpleeval = callPackage ../development/python-modules/simpleeval { };
|
||||
|
Loading…
Reference in New Issue
Block a user