python311Packages.json-tricks: add format

This commit is contained in:
Fabian Affolter
2023-08-16 23:28:03 +02:00
committed by GitHub
parent 681b500b6f
commit d2514e1a8e
@@ -11,18 +11,27 @@
buildPythonPackage rec {
pname = "json-tricks";
version = "3.17.2";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "mverleg";
repo = "pyjson_tricks";
rev = "v${version}";
sha256 = "sha256-7AT4h+f3FDTITfVZyLTimZlDGuAxKwe0kFYBEFGv51s=";
rev = "refs/tags/v${version}";
hash = "sha256-7AT4h+f3FDTITfVZyLTimZlDGuAxKwe0kFYBEFGv51s=";
};
nativeCheckInputs = [ numpy pandas pytz pytestCheckHook ];
nativeCheckInputs = [
numpy
pandas
pytz
pytestCheckHook
];
pythonImportsCheck = [ "json_tricks" ];
pythonImportsCheck = [
"json_tricks"
];
meta = with lib; {
description = "Extra features for Python JSON handling";