python312Packages.duet: 0.2.7 -> 0.2.9

Diff: https://github.com/google/duet/compare/refs/tags/v0.2.7...v0.2.9
This commit is contained in:
Fabian Affolter 2024-08-31 09:54:41 +02:00
parent 1bc7736ae7
commit 894bd64a4d

View File

@ -3,25 +3,33 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "duet";
version = "0.2.7";
format = "setuptools";
version = "0.2.9";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "google";
repo = "duet";
rev = "v${version}";
hash = "sha256-9CTAupAxZI1twoLpgr7VfECw70QunE6pk+SskiT3JDw=";
rev = "refs/tags/v${version}";
hash = "sha256-P7JxUigD7ZyhtocV+YuAVxuUYVa4F7PpXuA1CCmcMvg=";
};
propagatedBuildInputs = [ typing-extensions ];
build-system = [ setuptools ];
dependencies = [ typing-extensions ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "duet" ];
meta = with lib; {
description = "Simple future-based async library for python";
homepage = "https://github.com/google/duet";