python3Packages.jsonalias: init at 0.1.2
Library that defines a Json type alias for Python https://github.com/kevinheavey/jsonalias
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
})
|
||||
@@ -7979,6 +7979,8 @@ self: super: with self; {
|
||||
|
||||
jsonable = callPackage ../development/python-modules/jsonable { };
|
||||
|
||||
jsonalias = callPackage ../development/python-modules/jsonalias { };
|
||||
|
||||
jsonargparse = callPackage ../development/python-modules/jsonargparse { };
|
||||
|
||||
jsonconversion = callPackage ../development/python-modules/jsonconversion { };
|
||||
|
||||
Reference in New Issue
Block a user