mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-22 07:50:31 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
29 lines
611 B
Nix
29 lines
611 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "duet";
|
|
version = "0.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "duet";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9CTAupAxZI1twoLpgr7VfECw70QunE6pk+SskiT3JDw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ typing-extensions ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple future-based async library for python";
|
|
homepage = "https://github.com/google/duet";
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|