nixpkgs/pkgs/development/python-modules/types-requests/default.nix

35 lines
639 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, types-urllib3
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.27.25";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-gFrn44/Z0VcVMGbcQ4HPWF/TTfohLy/B/s4kjAWqxXE=";
};
propagatedBuildInputs = [
types-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 ];
};
}