1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-28 12:06:38 +03:00
nixpkgs/pkgs/development/python-modules/async_generator/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
702 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "async-generator";
2018-08-13 09:22:13 +02:00
version = "1.10";
disabled = pythonOlder "3.5";
src = fetchPypi {
pname = "async_generator";
inherit version;
2018-08-13 09:22:13 +02:00
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "async_generator" ];
meta = with lib; {
description = "Async generators and context managers for Python 3.5+";
homepage = "https://github.com/python-trio/async_generator";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ dotlambda ];
};
}