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

python3Packages.aurorapy: 0.2.7 -> 0.3 (#436675)

parents 26613c0b 8463ecd3
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@
  six,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "aurorapy";
  version = "0.2.7";
  version = "0.3";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "energievalsabbia";
    repo = "aurorapy";
    rev = version;
    hash = "sha256-rGwfGq3zdoG9NCGqVN29Q4bWApk5B6CRdsW9ctWgOec=";
    tag = finalAttrs.version;
    hash = "sha256-bc5i2x35sZXkCSJraTqX3Zc5B9eKL1qDh97/7ixyHLY=";
  };

  postPatch = ''
@@ -40,7 +40,7 @@ buildPythonPackage rec {
  meta = {
    description = "Implementation of the communication protocol for Power-One Aurora inverters";
    homepage = "https://gitlab.com/energievalsabbia/aurorapy";
    license = with lib.licenses; [ mit ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})