pythonPackages.lomond: init at 0.3.3
This commit is contained in:
parent
9544c6078e
commit
e225634d70
27
pkgs/development/python-modules/lomond/default.nix
Normal file
27
pkgs/development/python-modules/lomond/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ buildPythonPackage, freezegun, fetchFromGitHub, lib, pytestCheckHook
|
||||
, pytest-mock, pytestrunner, six, tornado_4 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lomond";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wildfoundry";
|
||||
repo = "dataplicity-${pname}";
|
||||
rev = "b30dad3cc38d5ff210c5dd01f8c3c76aa6c616d1";
|
||||
sha256 = "0lydq0imala08wxdyg2iwhqa6gcdrn24ah14h91h2zcxjhjk4gv8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pytestrunner ];
|
||||
propagatedBuildInputs = [ six ];
|
||||
checkInputs = [ pytestCheckHook freezegun pytest-mock tornado_4 ];
|
||||
# Makes HTTP requests
|
||||
disabledTests = [ "test_proxy" "test_live" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Websocket Client Library";
|
||||
homepage = "https://github.com/wildfoundry/dataplicity-lomond";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jamiemagee ];
|
||||
};
|
||||
}
|
@ -3498,6 +3498,8 @@ in {
|
||||
|
||||
logzero = callPackage ../development/python-modules/logzero { };
|
||||
|
||||
lomond = callPackage ../development/python-modules/lomond { };
|
||||
|
||||
loo-py = callPackage ../development/python-modules/loo-py { };
|
||||
|
||||
lpod = callPackage ../development/python-modules/lpod { };
|
||||
|
Loading…
Reference in New Issue
Block a user