python3Packages.duden: 0.19.1 -> 0.19.2 (#439927)

This commit is contained in:
dotlambda
2025-09-09 16:47:04 -07:00
committed by GitHub
@@ -9,24 +9,25 @@
pyyaml,
requests,
setuptools,
pytestCheckHook,
}:
let
finalAttrs = {
pname = "duden";
version = "0.19.1";
version = "0.19.2";
pyproject = true;
src = fetchFromGitHub {
owner = "radomirbosak";
repo = "duden";
rev = finalAttrs.version;
hash = "sha256-c6IItrjFVbsdYg3sDrExcxv7aRcKhd/M5hiZD+wBZ2Y=";
tag = finalAttrs.version;
hash = "sha256-wjFIlwd4qG6aG9w0VPus6BGqghwIlPC6a8m0eagvIYM=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
beautifulsoup4
crayons
pyxdg
@@ -35,6 +36,12 @@ let
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
"tests/test_online_attributes.py"
];
pythonImportsCheck = [ "duden" ];
meta = {