python311Packages.unearth: 0.14.0 -> 0.15.1

Changelog: https://github.com/frostming/unearth/releases/tag/0.15.1
This commit is contained in:
natsukium 2024-04-02 21:40:37 +09:00
parent 89a7714541
commit 6c5a089eb9
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -2,12 +2,12 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, cached-property
, packaging , packaging
, pdm-backend , pdm-backend
, requests , httpx
, flask , flask
, pytest-httpserver , pytest-httpserver
, pytest-mock
, pytestCheckHook , pytestCheckHook
, requests-wsgi-adapter , requests-wsgi-adapter
, trustme , trustme
@ -15,23 +15,23 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "unearth"; pname = "unearth";
version = "0.14.0"; version = "0.15.1";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-883fuUrA+GX7z5ZCMVVu9xgwEDecALASBVF6UMeKGG0="; hash = "sha256-hj3rMznA1lpb4NCtLGfUbV9XSnmOdO8FUr8R0pijCrs=";
}; };
nativeBuildInputs = [ build-system = [
pdm-backend pdm-backend
]; ];
propagatedBuildInputs = [ dependencies = [
packaging packaging
requests httpx
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
@ -39,6 +39,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
flask flask
pytest-httpserver pytest-httpserver
pytest-mock
pytestCheckHook pytestCheckHook
requests-wsgi-adapter requests-wsgi-adapter
trustme trustme