python3Packages.snitun: 0.40.0 -> 0.44.0

https://github.com/NabuCasa/snitun/releases/tag/0.44.0

This commit was automatically generated using update-python-libraries.

Changed files
+9 -2
pkgs
development
python-modules
snitun
+9 -2
pkgs/development/python-modules/snitun/default.nix
···
cryptography,
fetchFromGitHub,
pytest-aiohttp,
+
pytest-codspeed,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
···
buildPythonPackage rec {
pname = "snitun";
-
version = "0.40.0";
+
version = "0.44.0";
pyproject = true;
disabled = pythonOlder "3.10";
···
owner = "NabuCasa";
repo = "snitun";
tag = version;
-
hash = "sha256-wit0GVuWFMl1u+VC7Aw+dPcvqLGyviSz/DVUKXvSvAs=";
+
hash = "sha256-jZRA/UKamB5fUSvyaemN0Vq4GX6bNL8rsYCgToEkIL4=";
};
+
postPatch = ''
+
substituteInPlace pyproject.toml \
+
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
+
'';
+
build-system = [ setuptools ];
dependencies = [
···
nativeCheckInputs = [
pytest-aiohttp
+
pytest-codspeed
pytestCheckHook
];