567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
21 lines
541 B
Nix
21 lines
541 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchPypi,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "greek-accentuation";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-l2HZXdqlLubvy2bWhhZVYGMpF0DXVKTDFehkcGF5xdk=";
|
|
};
|
|
meta = {
|
|
description = "Python 3 library for accenting (and analyzing the accentuation of) Ancient Greek words";
|
|
homepage = "https://github.com/jtauber/greek-accentuation";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ kmein ];
|
|
};
|
|
}
|