python313Packages.pook: 2.1.3 -> 2.1.4

Changelog: https://github.com/h2non/pook/blob/v2.1.4/History.rst

Changed files
+4 -2
pkgs
development
python-modules
+4 -2
pkgs/development/python-modules/pook/default.nix
···
{
lib,
buildPythonPackage,
fetchFromGitHub,
furl,
hatchling,
···
buildPythonPackage rec {
pname = "pook";
-
version = "2.1.3";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "h2non";
repo = "pook";
tag = "v${version}";
-
hash = "sha256-DDHaKsye28gxyorILulrLRBy/B9zV673jeVZ85uPZAo=";
};
nativeBuildInputs = [ hatchling ];
···
];
nativeCheckInputs = [
pytest-asyncio
pytest-httpbin
pytest-pook
···
{
lib,
buildPythonPackage,
+
falcon,
fetchFromGitHub,
furl,
hatchling,
···
buildPythonPackage rec {
pname = "pook";
+
version = "2.1.4";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "h2non";
repo = "pook";
tag = "v${version}";
+
hash = "sha256-z0QaMdsX2xLXICgQwnlUD2KsgCn0jB4wO83+6O4B3D8=";
};
nativeBuildInputs = [ hatchling ];
···
];
nativeCheckInputs = [
+
falcon
pytest-asyncio
pytest-httpbin
pytest-pook