python3Packages.wn: fix build (#380723)

This commit is contained in:
Aleksana
2025-02-11 18:49:48 +08:00
committed by GitHub

View File

@@ -4,8 +4,8 @@
fetchPypi, fetchPypi,
pytestCheckHook, pytestCheckHook,
pythonOlder, pythonOlder,
flit-core, hatchling,
requests, httpx,
tomli, tomli,
}: }:
@@ -14,17 +14,17 @@ buildPythonPackage rec {
version = "0.11.0"; version = "0.11.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak="; hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak=";
}; };
nativeBuildInputs = [ flit-core ]; build-system = [ hatchling ];
propagatedBuildInputs = [ dependencies = [
requests httpx
tomli tomli
]; ];