about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/matrix-api-async/default.nix
blob: d7ae05bddc968ef97c1694acc70f7788d207842f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, matrix-client }:

buildPythonPackage rec {
  pname = "matrix_api_async";
  version = "0.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0xdx8fci0lar3x09dwqgka6ssz9d3g7gsfx4yyr13sdwza7zsqc3";
  };

  propagatedBuildInputs = [ matrix-client ];

  # no tests
  doCheck = false;

  pythonImportsCheck = [ "matrix_api_async" ];

  meta = with lib; {
    description = "An asyncio wrapper of matrix_client.api";
    license = licenses.mit;
    homepage = "https://github.com/Cadair/matrix_api_async";
    maintainers = with maintainers; [ globin ];
  };
}