lol

python313Packages.motmetrics: refactor

- add changelog to meta

+7 -4
+7 -4
pkgs/development/python-modules/motmetrics/default.nix
··· 25 25 src = fetchFromGitHub { 26 26 owner = "cheind"; 27 27 repo = "py-motmetrics"; 28 - # latest release is not compatible with pandas 2.0 28 + # Latest release is not compatible with pandas 2.0 29 29 rev = "c199b3e853d589af4b6a7d88f5bcc8b8802fc434"; 30 30 hash = "sha256-DJ82nioW3jdIVo1B623BE8bBhVa1oMzYIkhhit4Z4dg="; 31 31 }; 32 32 33 - nativeBuildInputs = [ setuptools ]; 33 + build-system = [ setuptools ]; 34 34 35 - propagatedBuildInputs = [ 35 + dependencies = [ 36 36 numpy 37 37 pandas 38 38 scipy ··· 44 44 pytest-benchmark 45 45 ]; 46 46 47 + pytestFlagsArray = [ "--benchmark-disable" ]; 48 + 47 49 pythonImportsCheck = [ "motmetrics" ]; 48 50 49 51 meta = with lib; { 50 - description = "Bar_chart: Benchmark multiple object trackers (MOT) in Python"; 52 + description = "Benchmark multiple object trackers (MOT) in Python"; 51 53 homepage = "https://github.com/cheind/py-motmetrics"; 54 + changelog = "https://github.com/cheind/py-motmetrics/releases/tag/${version}"; 52 55 license = licenses.mit; 53 56 maintainers = [ ]; 54 57 };