Files
Fabian Affolter 1f5ab16a0e python3Packages.jsonalias: init at 0.1.2
Library that defines a Json type alias for Python

https://github.com/kevinheavey/jsonalias
2026-04-15 09:12:13 +02:00

35 lines
797 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage (finalAttrs: {
pname = "jsonalias";
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "kevinheavey";
repo = "jsonalias";
tag = finalAttrs.version;
hash = "sha256-1Pb0VpwnAZiv3z+Ur6FS0LV4D9xKvrfAdUtulvr6ACg=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "jsonalias" ];
# Module has no tests
doCheck = false;
meta = {
description = "Library that defines a Json type alias for Python";
homepage = "https://github.com/kevinheavey/jsonalias";
changelog = "https://github.com/kevinheavey/jsonalias/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})