Merge #223297: python310Packages.typeguard: move setuptools-scm to correct input

...into staging

+4 -4
+4 -4
pkgs/development/python-modules/typeguard/default.nix
··· 14 14 buildPythonPackage rec { 15 15 pname = "typeguard"; 16 16 version = "2.13.3"; 17 + disabled = pythonOlder "3.5"; 17 18 outputs = [ "out" "doc" ]; 18 19 19 20 src = fetchPypi { ··· 21 22 sha256 = "00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4"; 22 23 }; 23 24 24 - buildInputs = [ setuptools-scm ]; 25 25 nativeBuildInputs = [ 26 26 glibcLocales 27 + setuptools-scm 27 28 sphinxHook 28 29 sphinx-autodoc-typehints 29 30 sphinx-rtd-theme 30 31 ]; 31 32 32 - LC_ALL="en_US.utf-8"; 33 + LC_ALL = "en_US.utf-8"; 33 34 34 35 postPatch = '' 35 36 substituteInPlace setup.cfg --replace " --cov" "" ··· 47 48 "test_typed_dict" 48 49 ]; 49 50 50 - disabled = pythonOlder "3.3"; 51 - 52 51 meta = with lib; { 53 52 description = "This library provides run-time type checking for functions defined with argument type annotations"; 54 53 homepage = "https://github.com/agronholm/typeguard"; 55 54 license = licenses.mit; 55 + maintainers = with maintainers; [ ]; 56 56 }; 57 57 }