python3Packages.dependency-injector: 4.35.3 -> 4.40.0

https://github.com/ets-labs/python-dependency-injector/releases/tag/4.40.0
This commit is contained in:
misuzu 2022-12-08 14:24:56 +02:00
parent b5e342b8cf
commit 950bb6ec53

View file

@ -16,13 +16,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dependency-injector"; pname = "dependency-injector";
version = "4.35.3"; version = "4.40.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ets-labs"; owner = "ets-labs";
repo = "python-dependency-injector"; repo = "python-dependency-injector";
rev = version; rev = version;
sha256 = "sha256-2qe4A2T3EagNCh1zSbPWblVN7p9NH8rNwQQVyESJTdk="; sha256 = "sha256-lcgPFdAgLmv7ILL2VVfqtGSw96aUfPv9oiOhksRtF3k=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -42,16 +42,6 @@ buildPythonPackage rec {
pyyaml pyyaml
]; ];
postPatch = ''
substituteInPlace requirements.txt \
--replace "six>=1.7.0,<=1.15.0" "six"
'';
disabledTestPaths = [
# There is no unique identifier to disable the one failing test
"tests/unit/ext/test_aiohttp_py35.py"
];
pythonImportsCheck = [ "dependency_injector" ]; pythonImportsCheck = [ "dependency_injector" ];
meta = with lib; { meta = with lib; {