default.nix (613B)
1 { 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "lsdreader"; 9 version = "0.2.15"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "sv99"; 14 repo = "lsdreader"; 15 tag = "v${version}"; 16 hash = "sha256-8DYPFUmhgA4mxaliPjbPkywyJUwrl3J034scmFGE9no="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 doCheck = false; 22 23 meta = { 24 description = "Decompile Lingvo LSD dictionary to DSL"; 25 homepage = "https://github.com/sv99/lsdreader"; 26 license = lib.licenses.mit; 27 maintainers = [ lib.maintainers.sikmir ]; 28 }; 29 }