nixpkgs/pkgs/development/python-modules/matrix-client/default.nix
2021-07-21 13:32:49 +02:00

28 lines
601 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, pytest, pytest-runner, responses
}:
buildPythonPackage rec {
pname = "matrix_client";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw";
};
checkInputs = [ pytest pytest-runner responses ];
propagatedBuildInputs = [ requests ];
meta = with lib; {
description = "Matrix Client-Server SDK";
homepage = "https://github.com/matrix-org/matrix-python-sdk";
license = licenses.asl20;
maintainers = with maintainers; [ olejorgenb ];
};
}