python3Packages.pystardict: fix build (#503701)

This commit is contained in:
Weijia Wang
2026-03-26 19:52:05 +00:00
committed by GitHub
@@ -2,8 +2,8 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
hatchling,
hatch-vcs,
six,
pytestCheckHook,
}:
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "pystardict";
version = "0.9";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "lig";
@@ -20,13 +20,13 @@ buildPythonPackage rec {
hash = "sha256-VWOxggAKifN5f6nSN1xsSbg0hpKzrHDw+UqnAOzsXj0=";
};
propagatedBuildInputs = [ six ];
nativeBuildInputs = [
setuptools
setuptools-scm
build-system = [
hatchling
hatch-vcs
];
dependencies = [ six ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pystardict" ];