Merge pull request #326409 from r-ryantm/auto-update/python312Packages.pymsteams

python312Packages.pymsteams: 0.2.2 -> 0.2.3
This commit is contained in:
Fabian Affolter 2024-07-12 21:23:51 +02:00 committed by GitHub
commit dd25bc2b02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,23 +4,26 @@
fetchFromGitHub,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "pymsteams";
version = "0.2.2";
format = "setuptools";
version = "0.2.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "rveachkc";
repo = pname;
rev = version;
hash = "sha256-H1AEjUnEK+seKsnFnHpn1/aHxXcbyz67NbzhlGDtbk4=";
repo ="pymsteams";
rev = "refs/tags/${version}";
hash = "sha256-suPCAzjQp46+kKFiCtm65lxBbsn78Owq4dVmWCdhIpA=";
};
propagatedBuildInputs = [ requests ];
build-system = [ setuptools ];
dependencies = [ requests ];
# Tests require network access
doCheck = false;
@ -30,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to interact with Microsoft Teams";
homepage = "https://github.com/rveachkc/pymsteams";
changelog = "https://github.com/rveachkc/pymsteams/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};