ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / duet / default.nix
blobce95291b9e958e155fd410a2b31783e574360906
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , typing-extensions
6 }:
8 buildPythonPackage rec {
9   pname = "duet";
10   version = "0.2.7";
12   src = fetchFromGitHub {
13     owner = "google";
14     repo = "duet";
15     rev = "v${version}";
16     sha256 = "sha256-9CTAupAxZI1twoLpgr7VfECw70QunE6pk+SskiT3JDw=";
17   };
19   propagatedBuildInputs = [ typing-extensions ];
21   checkInputs = [ pytestCheckHook ];
23   meta = with lib; {
24     description = "A simple future-based async library for python";
25     homepage = "https://github.com/google/duet";
26     maintainers = with maintainers; [ drewrisinger ];
27   };