Unverified Commit c7ac3583 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #243450 from r-ryantm/auto-update/python310Packages.python-manilaclient

python310Packages.python-manilaclient: 4.4.0 -> 4.5.0
parents dfdbcc42 aad14589
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -5,11 +5,10 @@
, testscenarios
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "cliff";
  inherit (cliff) version;

  src = cliff.src;
  inherit (cliff) version src;
  format = "other";

  postPatch = ''
    # only a small portion of the listed packages are actually needed for running the tests
+3 −4
Original line number Diff line number Diff line
@@ -3,11 +3,10 @@
, stestr
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "debtcollector-tests";
  inherit (debtcollector) version;

  src = debtcollector.src;
  inherit (debtcollector) version src;
  format = "other";

  postPatch = ''
    # only a small portion of the listed packages are actually needed for running the tests
+4 −4
Original line number Diff line number Diff line
{ stdenv
, buildPythonPackage
{ buildPythonPackage
, dm-haiku
, chex
, cloudpickle
@@ -16,9 +15,10 @@
, rlax
, distrax
, tensorflow-probability
, optax }:
, optax
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "dm-haiku-tests";
  inherit (dm-haiku) version;

+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
, testpath
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "flit-core";
  inherit (flit-core) version;

+3 −4
Original line number Diff line number Diff line
@@ -10,11 +10,10 @@

}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "ipykernel-tests";
  inherit (ipykernel) version;

  src = ipykernel.src;
  inherit (ipykernel) version src;
  format = "other";

  dontBuild = true;
  dontInstall = true;
Loading