2021-02-13 21:27:20 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, requests
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pymsteams";
|
2021-10-08 08:40:02 +02:00
|
|
|
version = "0.1.16";
|
2021-02-13 21:27:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rveachkc";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-10-08 08:40:02 +02:00
|
|
|
sha256 = "sha256-dRfzMCsU+jRdnqzIBLn1mPWr+UDq1HFfXXqe1dVhGDo=";
|
2021-02-13 21:27:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
|
|
|
# Tests require network access
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pymsteams" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python module to interact with Microsoft Teams";
|
|
|
|
homepage = "https://github.com/rveachkc/pymsteams";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|