mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-15 01:33:50 +00:00
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
rustPlatform,
|
|
|
|
pytest-asyncio,
|
|
redis,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "burner-redis";
|
|
version = "0.1.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "prefectlabs";
|
|
repo = "burner-redis";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-Ybi8F0imJKUQiF0Gfy/WGcAqfQSPoT1tAvOXDnI5Z7M=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-laD/FhYxXCOZOvs0e7ad80vUgX4eoHpLQu6dx/glkEM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "burner_redis" ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
|
|
pytest-asyncio
|
|
redis
|
|
];
|
|
|
|
meta = {
|
|
description = "Embedded, in-process Redis-compatible database";
|
|
homepage = "https://github.com/prefectlabs/burner-redis";
|
|
downloadPage = "https://github.com/prefectlabs/burner-redis/releases";
|
|
changelog = "https://github.com/prefectlabs/burner-redis/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ prince213 ];
|
|
};
|
|
})
|