Files
nixpkgs/pkgs/development/python-modules/duet/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

31 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 ];
};
}