json-tricks: init at 3.15.5

This commit is contained in:
Ben Darwin 2021-12-21 11:56:54 -05:00 committed by Jonathan Ringer
parent 54c051fab5
commit d2573f647b
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, pytestCheckHook
, numpy
, pandas
, pytz
}:
buildPythonPackage rec {
pname = "json-tricks";
version = "3.15.5";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "mverleg";
repo = "pyjson_tricks";
rev = "v${version}";
sha256 = "wdpqCqMO0EzKyqE4ishL3CTsSw3sZPGvJ0HEktKFgZU=";
};
checkInputs = [ numpy pandas pytz pytestCheckHook ];
pythonImportsCheck = [ "json_tricks" ];
meta = with lib; {
description = "Extra features for Python JSON handling";
homepage = "https://github.com/mverleg/pyjson_tricks";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}

View file

@ -4215,6 +4215,8 @@ in {
jsonstreams = callPackage ../development/python-modules/jsonstreams { };
json-tricks = callPackage ../development/python-modules/json-tricks { };
jug = callPackage ../development/python-modules/jug { };
junitparser = callPackage ../development/python-modules/junitparser { };