python3Packages.types-requests: init at 2.25.0

wip/nixpkgs-raku
Fabian Affolter 3 years ago committed by Jonathan Ringer
parent e4e7c8c2c3
commit 6d20dc7421
  1. 26
      pkgs/development/python-modules/types-requests/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-requests";
version = "2.25.0";
src = fetchPypi {
inherit pname version;
sha256 = "022q31fgiyq6zfjv4pbpg10hh9m7x91wqfc6bdyin50hf980q3gf";
};
# Modules 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 ];
};
}

@ -8811,6 +8811,8 @@ in {
types-decorator = callPackage ../development/python-modules/types-decorator { };
types-requests = callPackage ../development/python-modules/types-requests { };
typesentry = callPackage ../development/python-modules/typesentry { };
typesystem = callPackage ../development/python-modules/typesystem { };

Loading…
Cancel
Save