lol

python313Packages.motmetrics: refactor

- add changelog to meta

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