lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.condense-json: init at 0.1.2

+39
+37
pkgs/development/python-modules/condense-json/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + pytestCheckHook, 7 + }: 8 + buildPythonPackage rec { 9 + pname = "condense-json"; 10 + version = "0.1.2"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "simonw"; 15 + repo = "condense-json"; 16 + tag = version; 17 + hash = "sha256-eZ8d8N7k8VL7dFkORHmp7JmHM1/11Km8BCriWw/LiwE="; 18 + }; 19 + 20 + build-system = [ 21 + setuptools 22 + ]; 23 + 24 + nativeCheckInputs = [ 25 + pytestCheckHook 26 + ]; 27 + 28 + pythonImportsCheck = [ "condense_json" ]; 29 + 30 + meta = { 31 + description = "Python function for condensing JSON using replacement strings"; 32 + homepage = "https://github.com/simonw/condense-json"; 33 + changelog = "https://github.com/simonw/condense-json/releases/tag/${src.tag}"; 34 + license = lib.licenses.asl20; 35 + maintainers = with lib.maintainers; [ josh ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 2737 2737 2738 2738 conda-package-streaming = callPackage ../development/python-modules/conda-package-streaming { }; 2739 2739 2740 + condense-json = callPackage ../development/python-modules/condense-json { }; 2741 + 2740 2742 conduit = callPackage ../development/python-modules/conduit { }; 2741 2743 2742 2744 conduit-mpi = callPackage ../development/python-modules/conduit { mpiSupport = true; };