python3Packages.types-requests: 2.27.2 -> 2.27.5
This commit is contained in:
parent
d5f87952a5
commit
2df8608a24
1 changed files with 7 additions and 2 deletions
|
@ -1,18 +1,23 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, types-urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-requests";
|
||||
version = "2.27.2";
|
||||
version = "2.27.5";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "c902c5433ad103053011c6ac036317ac6f6a8e8a6926fc470a8d2ef791236da7";
|
||||
sha256 = "sha256-pn3BqFEjErjLifO6lfmg5p7zQ2rnfJvU8yjNiPF63aI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
types-urllib3
|
||||
];
|
||||
|
||||
# Module doesn't have tests
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue