lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.teamcity-messages: refactor

authored by

Fabian Affolter and committed by
Martin Weinelt
53093f51 81723229

+6 -2
+6 -2
pkgs/development/python-modules/teamcity-messages/default.nix
··· 4 4 fetchFromGitHub, 5 5 pytestCheckHook, 6 6 pythonOlder, 7 + setuptools, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "teamcity-messages"; 11 12 version = "1.33"; 12 - format = "setuptools"; 13 + pyproject = true; 13 14 14 15 disabled = pythonOlder "3.7"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "JetBrains"; 18 - repo = pname; 19 + repo = "teamcity-messages"; 19 20 tag = "v${version}"; 20 21 hash = "sha256-BAwAfe54J+gbbiz03Yiu3eC/9RnI7P0mfR3nfM1oKZw="; 21 22 }; 23 + 24 + build-system = [ setuptools ]; 22 25 23 26 nativeCheckInputs = [ pytestCheckHook ]; 24 27 ··· 29 32 meta = with lib; { 30 33 description = "Python unit test reporting to TeamCity"; 31 34 homepage = "https://github.com/JetBrains/teamcity-messages"; 35 + changelog = "https://github.com/JetBrains/teamcity-messages/releases/tag/v${src.tag}"; 32 36 license = licenses.asl20; 33 37 maintainers = with maintainers; [ fab ]; 34 38 };