python312Packages.osrparse: init at 7.0.1

This commit is contained in:
Wulpey 2025-05-29 17:39:23 +03:00
parent cdb5859977
commit bb94f544b0
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "osrparse";
version = "7.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "kszlim";
repo = "osu-replay-parser";
tag = "v${version}";
hash = "sha256-MBE4z1SDkr0YA5ommF+WZyR2N67Y1/xmDhxrTrUhQJk=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "osrparse" ];
meta = {
description = "Parser for osr (osu! replays) file format";
homepage = "https://github.com/kszlim/osu-replay-parser";
changelog = "https://github.com/kszlim/osu-replay-parser/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wulpine ];
};
}

View File

@ -10891,6 +10891,8 @@ self: super: with self; {
osqp = callPackage ../development/python-modules/osqp { };
osrparse = callPackage ../development/python-modules/osrparse { };
oss2 = callPackage ../development/python-modules/oss2 { };
ossfs = callPackage ../development/python-modules/ossfs { };