1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 hatchling, 6 hatch-requirements-txt, 7 domdf-python-tools, 8 idna, 9}: 10buildPythonPackage rec { 11 pname = "apeye-core"; 12 version = "1.1.5"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit version; 17 pname = "apeye_core"; 18 hash = "sha256-Xecu09AMybIP6lXlS3q49e+FAOszpTaLwWKlWF4jilU="; 19 }; 20 21 build-system = [ hatchling ]; 22 23 nativeBuildInputs = [ 24 hatch-requirements-txt 25 ]; 26 27 dependencies = [ 28 domdf-python-tools 29 idna 30 ]; 31 32 meta = { 33 description = "Core (offline) functionality for the apeye library"; 34 homepage = "https://github.com/domdfcoding/apyey-core"; 35 license = lib.licenses.mit; 36 maintainers = with lib.maintainers; [ tyberius-prime ]; 37 }; 38}