python3Packages.mautrix: 0.5.8 -> 0.8.3
This commit is contained in:
parent
58b29849c7
commit
31991c5365
|
@ -1,19 +1,18 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, aiohttp, future-fstrings, pythonOlder
|
||||
{ lib, buildPythonPackage, fetchPypi, aiohttp, pythonOlder
|
||||
, sqlalchemy, ruamel_yaml, CommonMark, lxml, fetchpatch
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mautrix";
|
||||
version = "0.5.8";
|
||||
version = "0.8.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1hqg32n7pmjhap0ybfcf05zgfcyyirb4fm1m7gf44dwh40da6qz0";
|
||||
sha256 = "0bnflaz0nkjvps3b87ig02d3pymnrgrwcd0p0s6qyzx9s08lcz5x";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
future-fstrings
|
||||
|
||||
# defined in optional-requirements.txt
|
||||
sqlalchemy
|
||||
|
@ -22,7 +21,7 @@ buildPythonPackage rec {
|
|||
lxml
|
||||
];
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
# no tests available
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in New Issue