Unverified Commit 599d0c1f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.dsmr-parser: 1.4.3 -> 1.4.4 (#492783)

parents 80347a37 b7208b61
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@
  tailer,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dsmr-parser";
  version = "1.4.3";
  version = "1.4.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ndokter";
    repo = "dsmr_parser";
    tag = "v${version}";
    hash = "sha256-jBrcliN63isFKMqgaFIAPP/ALDdtL/O9mCN8Va+g+NE=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-/N8w4X/XsJ0tfWLKnSa5oo24mT1tftaKxAocBoA8FWk=";
  };

  pythonRelaxDeps = [ "dlms_cosem" ];
@@ -45,9 +45,9 @@ buildPythonPackage rec {
  meta = {
    description = "Python module to parse Dutch Smart Meter Requirements (DSMR)";
    homepage = "https://github.com/ndokter/dsmr_parser";
    changelog = "https://github.com/ndokter/dsmr_parser/releases/tag/${src.tag}";
    changelog = "https://github.com/ndokter/dsmr_parser/releases/tag/${finalAttrs.src.tag}";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "dsmr_console";
  };
}
})