Unverified Commit c67ff5e4 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.pyhocon: 0.3.61 -> 0.3.63 (#502705)

parents 73070658 084e5d90
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -2,25 +2,28 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  mock,
  pyparsing,
  pytestCheckHook,
  python-dateutil,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyhocon";
  version = "0.3.61";
  format = "setuptools";
  version = "0.3.63";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "chimpler";
    repo = "pyhocon";
    tag = version;
    hash = "sha256-xXx30uxJ8+KPVdYC6yRzEDJbwYSzIO/Gy1xrehvI5ZE=";
    tag = finalAttrs.version;
    hash = "sha256-uguNvXBaccAUdQx1zcpn/i3jSa5Y4uWTqkFr6rI4fBc=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    pyparsing
    python-dateutil
  ];
@@ -61,4 +64,4 @@ buildPythonPackage rec {
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ chreekat ];
  };
}
})