pythonPackages.mautrix-appservice: init at 0.3.7
This commit is contained in:
parent
ee6dd6acb4
commit
7993fa60b8
@ -0,0 +1,28 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, aiohttp, future-fstrings, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mautrix-appservice";
|
||||
version = "0.3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1615220f5bb75e2093ad1e30f4c2e1243499b0b20caef014fd73faadd3bfea6c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
future-fstrings
|
||||
];
|
||||
|
||||
# No tests available
|
||||
doCheck = false;
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/tulir/mautrix-appservice-python;
|
||||
description = "A Python 3 asyncio-based Matrix application service framework";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ nyanloutre ];
|
||||
};
|
||||
}
|
@ -3003,6 +3003,8 @@ in {
|
||||
|
||||
matrix-client = callPackage ../development/python-modules/matrix-client { };
|
||||
|
||||
mautrix-appservice = callPackage ../development/python-modules/mautrix-appservice { };
|
||||
|
||||
maya = callPackage ../development/python-modules/maya { };
|
||||
|
||||
mccabe = callPackage ../development/python-modules/mccabe { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user