matrix_common: init at 1.0.0

New required dependency for matrix-synapse
This commit is contained in:
Sumner Evans 2022-01-18 07:42:20 -07:00
parent b65da09204
commit af080751af
No known key found for this signature in database
GPG key ID: 8904527AB50022FD
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, attrs
}:
buildPythonPackage rec {
pname = "matrix_common";
version = "1.0.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ZmiKRoJ8hv1USuJBDzV2U1uIFt2lRxmT+iAOqOShJK4=";
};
propagatedBuildInputs = [ attrs ];
pythonImportsCheck = [ "matrix_common" ];
meta = with lib; {
description = "Common utilities for Synapse, Sydent and Sygnal";
homepage = "https://github.com/matrix-org/matrix-python-common";
license = licenses.asl20;
maintainers = with maintainers; [ sumnerevans ];
};
}

View file

@ -4873,6 +4873,8 @@ in {
matrix-client = callPackage ../development/python-modules/matrix-client { };
matrix-common = callPackage ../development/python-modules/matrix-common { };
matrix-nio = callPackage ../development/python-modules/matrix-nio { };
mattermostdriver = callPackage ../development/python-modules/mattermostdriver { };