My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/matrix-api-async/default.nix

25 lines
608 B

{ 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 ];
};
}