Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
875 B
Nix
43 lines
875 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
poetry-core,
|
|
importlib-metadata,
|
|
importlib-resources,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cmudict";
|
|
version = "1.1.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-I8ORTIVGX2p9JtLYl0+jQd17ySTR/6UBtBQGuTaSPbE=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
];
|
|
|
|
dependencies = [
|
|
importlib-metadata
|
|
importlib-resources
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cmudict"
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/prosegrinder/python-cmudict/blob/main/CHANGELOG.md";
|
|
description = "A versioned python wrapper package for The CMU Pronouncing Dictionary data files";
|
|
homepage = "https://pypi.org/project/cmudict/";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ sandarukasa ];
|
|
};
|
|
}
|