ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / matrix-common / default.nix
blob4abec9e3154863af6caa11dce29624b550d9367b
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchPypi
5 , setuptools
6 , attrs
7 , unittestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "matrix-common";
12   version = "1.3.0";
13   format = "pyproject";
15   src = fetchPypi {
16     pname = "matrix_common";
17     inherit version;
18     sha256 = "sha256-YuEhzM2fJDQXtX7DenbcRK6xmKelxnr9a4J1mS/yq9E=";
19   };
21   nativeBuildInputs = [
22     setuptools
23   ];
25   propagatedBuildInputs = [
26     attrs
27   ];
29   checkInputs = [
30     unittestCheckHook
31   ];
33   pythonImportsCheck = [ "matrix_common" ];
35   meta = with lib; {
36     description = "Common utilities for Synapse, Sydent and Sygnal";
37     homepage = "https://github.com/matrix-org/matrix-python-common";
38     license = licenses.asl20;
39     maintainers = with maintainers; [ sumnerevans ];
40   };