python3.pkgs.mattermostdriver: init at 7.3.0
Co-authored-by: Linus Heckemann <git@sphalerite.org>
This commit is contained in:
parent
395eb4ff4a
commit
ce0218bb32
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/mattermostdriver/default.nix
Normal file
33
pkgs/development/python-modules/mattermostdriver/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, websockets
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mattermostdriver";
|
||||
version = "7.3.0";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "17jqcpa1xd9n7bf4d5l7wmscls34kymv27gi17pyyfjxbwk5gsga";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ websockets requests ];
|
||||
|
||||
pythonImportsCheck = [ "mattermostdriver" ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python Mattermost Driver";
|
||||
homepage = "https://github.com/Vaelor/python-mattermost-driver";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ globin lheckemann ];
|
||||
};
|
||||
}
|
|
@ -4099,6 +4099,8 @@ in {
|
|||
|
||||
matrix-nio = callPackage ../development/python-modules/matrix-nio { };
|
||||
|
||||
mattermostdriver = callPackage ../development/python-modules/mattermostdriver { };
|
||||
|
||||
mautrix = callPackage ../development/python-modules/mautrix { };
|
||||
|
||||
mautrix-appservice = self.mautrix; # alias 2019-12-28
|
||||
|
|
Loading…
Reference in a new issue