mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
607 B
Nix
28 lines
607 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
, pytest, pytestrunner, responses
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "matrix_client";
|
|
version = "0.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw";
|
|
};
|
|
|
|
checkInputs = [ pytest pytestrunner responses ];
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Matrix Client-Server SDK";
|
|
homepage = https://github.com/matrix-org/matrix-python-sdk;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ olejorgenb ];
|
|
};
|
|
}
|