depot/third_party/nixpkgs/pkgs/development/python-modules/duet/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
639 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
typing-extensions,
}:
buildPythonPackage rec {
pname = "duet";
version = "0.2.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "google";
repo = "duet";
rev = "v${version}";
hash = "sha256-9CTAupAxZI1twoLpgr7VfECw70QunE6pk+SskiT3JDw=";
};
propagatedBuildInputs = [ typing-extensions ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Simple future-based async library for python";
homepage = "https://github.com/google/duet";
maintainers = with maintainers; [ drewrisinger ];
};
}