Unverified Commit 8fc3b652 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #235000 from fabaff/peaqevcore-bump

python311Packages.peaqevcore: 15.3.1 -> 18.0.6
parents bd670733 43bf5300
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -6,19 +6,18 @@

buildPythonPackage rec {
  pname = "peaqevcore";
  version = "15.3.1";
  version = "18.0.6";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-nbDySNyHsy/5RaN7L/lbMunfXp+Ohyq0sZWPXirFbqs=";
    hash = "sha256-S10THua+8vifatAeFP35EirqwrODGpHTUt/9Sdk3UI8=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "pytest" ""
    sed -i "/extras_require/d" setup.py
  '';

  # Tests are not shipped and source is not tagged
@@ -32,6 +31,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library for interacting with Peaqev car charging";
    homepage = "https://github.com/elden1337/peaqev-core";
    changelog = "https://github.com/elden1337/peaqev-core/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };