Unverified Commit fa5a83c6 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

Merge pull request #251417 from fabaff/adax-bump

python311Packages.adax: 0.2.0 -> 0.3.0
parents fb6f1934 19a689af
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@

buildPythonPackage rec {
  pname = "adax";
  version = "0.2.0";
  version = "0.3.0";
  format = "setuptools";

  disabled = pythonOlder "3.5";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "Danielhiversen";
    repo = "pyadax";
    rev = version;
    hash = "sha256-EMSX2acklwWOYiEeLHYG5mwdiGnWAUo5dGMiHCmZrko=";
    rev = "refs/tags/${version}";
    hash = "sha256-y4c1RBy/UxmKP7+mHXi86XJ2/RXGrqkj94I2Q699EJU=";
  };

  propagatedBuildInputs = [
@@ -28,11 +28,14 @@ buildPythonPackage rec {
  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "adax" ];
  pythonImportsCheck = [
    "adax"
  ];

  meta = with lib; {
    description = "Python module to communicate with Adax";
    homepage = "https://github.com/Danielhiversen/pyAdax";
    changelog = "https://github.com/Danielhiversen/pyAdax/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };