python3Packages.custom-json-diff: init at 2.1.6

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>

Changed files
+54
pkgs
development
python-modules
custom-json-diff
top-level
+52
pkgs/development/python-modules/custom-json-diff/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
setuptools,
+
jinja2,
+
json-flatten,
+
packageurl-python,
+
semver,
+
toml,
+
pytestCheckHook,
+
}:
+
+
buildPythonPackage rec {
+
pname = "custom-json-diff";
+
version = "2.1.6";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "appthreat";
+
repo = "custom-json-diff";
+
tag = "v${version}";
+
hash = "sha256-09kSj4fJHQHyzsCk0bSVlwAgkyzWOSjRKxU1rcMXacQ=";
+
};
+
+
build-system = [
+
setuptools
+
];
+
+
dependencies = [
+
jinja2
+
json-flatten
+
packageurl-python
+
semver
+
toml
+
];
+
+
nativeCheckInputs = [
+
pytestCheckHook
+
];
+
+
pythonImportsCheck = [
+
"custom_json_diff"
+
];
+
+
meta = {
+
description = "Utility to compare json documents containing dynamically-generated fields";
+
homepage = "https://github.com/appthreat/custom-json-diff";
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [ ethancedwards8 ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
curvefitgui = callPackage ../development/python-modules/curvefitgui { };
+
custom-json-diff = callPackage ../development/python-modules/custom-json-diff { };
+
customtkinter = callPackage ../development/python-modules/customtkinter { };
cut-cross-entropy = callPackage ../development/python-modules/cut-cross-entropy { };