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

python3Packages.pypoolstation: 0.5.8 -> 0.6.0 (#515263)

parents cae4874e b34702ee
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@
  poetry-core,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pypoolstation";
  version = "0.5.8";
  version = "0.6.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-GIRx66esht82tKBJDhCDrwPkxsdBPi1w9tSQ7itF0qQ=";
    inherit (finalAttrs) pname version;
    hash = "sha256-blTvbvuIS2YISd0jBR/TXOSm594htGB7lc9JpA+3ayM=";
  };

  build-system = [ poetry-core ];
@@ -37,4 +37,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})