python3Packages.validictory: remove

This commit is contained in:
Sandro Jäckel 2023-07-07 23:42:30 +02:00
parent 555555d0dd
commit 6666666f37
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 1 additions and 28 deletions

View File

@ -1,26 +0,0 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchPypi
}:
buildPythonPackage rec {
pname = "validictory";
version = "1.1.2";
disabled = pythonAtLeast "3.10"; # abandoned, should be removed when we move to py310/311
src = fetchPypi {
inherit pname version;
sha256 = "1fim11vj990rmn59qd67knccjx1p4an7gavbgprpabsrb13bi1rs";
};
doCheck = false;
meta = with lib; {
description = "Validate dicts against a schema";
homepage = "https://github.com/sunlightlabs/validictory";
license = licenses.mit;
};
}

View File

@ -340,6 +340,7 @@ mapAliases ({
unittest2 = throw "unittest2 has been removed as it's a backport of unittest that's unmaintained and not needed beyond Python 3.4."; # added 2022-12-01
uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13
uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13
validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07
virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07
Wand = wand; # added 2022-11-13
wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20

View File

@ -12999,8 +12999,6 @@ self: super: with self; {
validators = callPackage ../development/python-modules/validators { };
validictory = callPackage ../development/python-modules/validictory { };
validobj = callPackage ../development/python-modules/validobj { };
validphys2 = callPackage ../development/python-modules/validphys2 { };