python312Packages.osrparse: init at 7.0.1
This commit is contained in:
parent
cdb5859977
commit
bb94f544b0
38
pkgs/development/python-modules/osrparse/default.nix
Normal file
38
pkgs/development/python-modules/osrparse/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -10891,6 +10891,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
osqp = callPackage ../development/python-modules/osqp { };
|
osqp = callPackage ../development/python-modules/osqp { };
|
||||||
|
|
||||||
|
osrparse = callPackage ../development/python-modules/osrparse { };
|
||||||
|
|
||||||
oss2 = callPackage ../development/python-modules/oss2 { };
|
oss2 = callPackage ../development/python-modules/oss2 { };
|
||||||
|
|
||||||
ossfs = callPackage ../development/python-modules/ossfs { };
|
ossfs = callPackage ../development/python-modules/ossfs { };
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user