pyditz: remove testPhase

wxt ce50474f bb90c6ab

+10 -9
+10 -9
pkgs/by-name/py/pyditz/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "pyditz"; 9 9 version = "0.11"; 10 + pyproject = true; 10 11 11 12 src = fetchPypi { 12 13 inherit pname version; 13 14 hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE="; 14 15 }; 15 - nativeBuildInputs = with python3Packages; [ setuptools-scm ]; 16 - propagatedBuildInputs = with python3Packages; [ 16 + 17 + build-system = with python3Packages; [ setuptools-scm ]; 18 + 19 + dependencies = with python3Packages; [ 17 20 pyyaml 18 21 six 19 22 jinja2 20 23 cerberus 21 24 ]; 22 25 23 - nativeCheckInputs = with python3Packages; [ unittestCheckHook ]; 24 - 25 - meta = with lib; { 26 - homepage = "https://pypi.org/project/pyditz/"; 26 + meta = { 27 + homepage = "https://hg.sr.ht/~zondo/pyditz"; 27 28 description = "Drop-in replacement for the Ditz distributed issue tracker"; 28 - maintainers = [ maintainers.ilikeavocadoes ]; 29 - license = licenses.lgpl2; 30 - platforms = platforms.linux; 29 + maintainers = with lib.maintainers; [ ilikeavocadoes ]; 30 + license = lib.licenses.lgpl2Plus; 31 + platforms = lib.platforms.linux; 31 32 }; 32 33 }