My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/types-requests/default.nix

34 lines
639 B

{ lib
, buildPythonPackage
, fetchPypi
, types-urllib3
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.27.27";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-1hjZgJ+jL1FM8XzqhGCBTaZxxWNm+xyQiszKi/GDESs=";
};
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 ];
};
}