Commit 6fd9741c authored by Robert Schütz's avatar Robert Schütz
Browse files

snapcraft: don't override pydantic

parent 3e051ced
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@
let
  python = python3.override {
    packageOverrides = self: super: {
      pydantic = self.pydantic_1;
      pydantic-yaml = super.pydantic-yaml.overridePythonAttrs (old: rec {
        version = "0.11.2";
        src = fetchFromGitHub {
@@ -30,10 +29,6 @@ let
          types-deprecated
        ];
      });
      versioningit = super.versioningit.overridePythonAttrs (old: rec {
        # incompatible with pydantic_1
        doCheck = false;
      });
    };
  };
in