Commit d5205d10 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python314Packages.pyweatherflowudp: 1.4.5 -> 1.5.0

parent 923e274b
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  fetchFromGitHub,
  pint,
  poetry-core,
  poetry-dynamic-versioning,
  psychrolib,
  pytest-asyncio,
  pytestCheckHook,
@@ -11,19 +12,22 @@

buildPythonPackage rec {
  pname = "pyweatherflowudp";
  version = "1.4.5";
  version = "1.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "briis";
    repo = "pyweatherflowudp";
    tag = "v${version}";
    hash = "sha256-aTwGFYTtd07BsWFaFc7ns+8oh2AxTUfRFSu81Zv5OoA=";
    hash = "sha256-mo42Y6vPREuH5EaoALTJdzoaQLVEvfTeuJqV+N+PFRE=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [
    poetry-core
    poetry-dynamic-versioning
  ];

  propagatedBuildInputs = [
  dependencies = [
    pint
    psychrolib
  ];