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

...into staging

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