python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / gentools / default.nix
blob592e0e61c26a4dc5b13e2f949c09b736e0554264
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   importlib-metadata,
6   poetry-core,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "gentools";
13   version = "1.2.2";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "ariebovenberg";
20     repo = "gentools";
21     tag = "v${version}";
22     hash = "sha256-+6KTFxOpwvGOCqy6JU87gOZmDa6MvjR10qES5wIfrjI=";
23   };
25   nativeBuildInputs = [ poetry-core ];
27   propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "gentools" ];
33   meta = with lib; {
34     description = "Tools for generators, generator functions, and generator-based coroutines";
35     homepage = "https://gentools.readthedocs.io/";
36     changelog = "https://github.com/ariebovenberg/gentools/blob/v${version}/CHANGELOG.rst";
37     license = licenses.mit;
38     maintainers = with maintainers; [ ];
39   };