mitmproxy: 12.0.1 -> 12.1.1 (#411159)

This commit is contained in:
Sandro 2025-06-02 17:59:20 +02:00 committed by GitHub
commit 4ce1a461b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,6 @@
hypothesis,
kaitaistruct,
ldap3,
mitmproxy-linux,
mitmproxy-rs,
msgpack,
passlib,
@ -31,7 +30,6 @@
ruamel-yaml,
setuptools,
sortedcontainers,
stdenv,
tornado,
urwid,
wsproto,
@ -40,14 +38,14 @@
buildPythonPackage rec {
pname = "mitmproxy";
version = "12.0.1";
version = "12.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mitmproxy";
repo = "mitmproxy";
tag = "v${version}";
hash = "sha256-BKT/qBWlfShAveL1KY5XXgQjhxR3Vr4zoJwiRxtBJkE=";
hash = "sha256-RTHL5+lbR+AbkiE4+z4ZbxZSV2E4NGTmShbMIMRKJPA=";
};
pythonRelaxDeps = [
@ -55,6 +53,7 @@ buildPythonPackage rec {
"h2"
"passlib"
"typing-extensions" # https://github.com/NixOS/nixpkgs/pull/397082
"tornado"
];
build-system = [ setuptools ];