python312Packages.types-requests:: use nixfmt

This commit is contained in:
Fabian Affolter 2024-04-03 11:34:31 +02:00
parent b245e3efce
commit 01cf5df081

View File

@ -1,9 +1,10 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, setuptools fetchPypi,
, types-urllib3 setuptools,
, urllib3 types-urllib3,
urllib3,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -16,9 +17,7 @@ buildPythonPackage rec {
hash = "sha256-4eDNC2VTNPOdn4craKExDw40Nkdoi/LO6TLsTCsE3lk="; hash = "sha256-4eDNC2VTNPOdn4craKExDw40Nkdoi/LO6TLsTCsE3lk=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
types-urllib3 types-urllib3
@ -28,9 +27,7 @@ buildPythonPackage rec {
# Module doesn't have tests # Module doesn't have tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "requests-stubs" ];
"requests-stubs"
];
meta = with lib; { meta = with lib; {
description = "Typing stubs for requests"; description = "Typing stubs for requests";