nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 541 B view raw
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6buildPythonPackage rec { 7 pname = "greek-accentuation"; 8 version = "1.2.0"; 9 format = "setuptools"; 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-l2HZXdqlLubvy2bWhhZVYGMpF0DXVKTDFehkcGF5xdk="; 13 }; 14 meta = { 15 description = "Python 3 library for accenting (and analyzing the accentuation of) Ancient Greek words"; 16 homepage = "https://github.com/jtauber/greek-accentuation"; 17 license = lib.licenses.mit; 18 maintainers = with lib.maintainers; [ kmein ]; 19 }; 20}