nixpkgs/pkgs/development/python-modules/braq/default.nix
Fabian Affolter 7856da69f7 python313Packages.braq: init at 0.0.12
Section-based human-readable data format

https://github.com/pyrustic/braq
2026-01-14 14:10:01 +01:00

31 lines
635 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "braq";
version = "0.0.12";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-UdrlG4Y8u6LNN9oWPfBrfcUSSQTSwmuSvaVMG95m10s=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "braq" ];
meta = {
description = "Section-based human-readable data format";
homepage = "https://github.com/pyrustic/braq";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})