Files
nixpkgs/pkgs/development/python-modules/matrix-client/default.nix
T

28 lines
607 B
Nix
Raw Normal View History

2017-08-24 16:07:01 +02:00
{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, pytest, pytestrunner, responses
2017-08-24 16:07:01 +02:00
}:
buildPythonPackage rec {
pname = "matrix_client";
version = "0.3.2";
2017-08-24 16:07:01 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "1mgjd0ymf9mvqjkvgx3xjhxap7rzdmpa21wfy0cxbw2xcswcrqyw";
2017-08-24 16:07:01 +02:00
};
checkInputs = [ pytest pytestrunner responses ];
2017-08-24 16:07:01 +02:00
propagatedBuildInputs = [ requests ];
2017-08-24 16:07:01 +02:00
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 ];
};
}