python3Packages.pymsteams: init at 0.1.14

This commit is contained in:
Fabian Affolter 2021-02-13 21:27:20 +01:00
parent 5852a21819
commit d38297f734
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "pymsteams";
version = "0.1.14";
src = fetchFromGitHub {
owner = "rveachkc";
repo = pname;
rev = version;
sha256 = "19gnsjzf3kwcwp2rwa30zpqjqgxb9plgcsx7fqbmxnrxgw99fyqx";
};
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 ];
};
}

View file

@ -5670,6 +5670,8 @@ in {
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
pymsteams = callPackage ../development/python-modules/pymsteams { };
py-multibase = callPackage ../development/python-modules/py-multibase { };
py-multicodec = callPackage ../development/python-modules/py-multicodec { };