nixpkgs/pkgs/development/python-modules/types-requests/default.nix
2024-04-03 11:34:31 +02:00

39 lines
702 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-urllib3,
urllib3,
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.31.0.20240403";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-4eDNC2VTNPOdn4craKExDw40Nkdoi/LO6TLsTCsE3lk=";
};
build-system = [ setuptools ];
dependencies = [
types-urllib3
urllib3
];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "requests-stubs" ];
meta = with lib; {
description = "Typing stubs for requests";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}