python3.pkgs.validobj: 0.6 -> 0.7

Upstream responded _extremely_ promptly to my bug report and fixed
their tests with Python 3.11.
This commit is contained in:
Alyssa Ross
2023-02-13 20:39:49 +00:00
parent 7f610b4d3f
commit 2bbb49f1d7
@@ -1,6 +1,5 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, flit
, hypothesis
@@ -9,15 +8,12 @@
buildPythonPackage rec {
pname = "validobj";
version = "0.6";
version = "0.7";
format = "pyproject";
# https://github.com/Zaharid/validobj/issues/8
disabled = pythonAtLeast "3.11";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BvnHn0Erk87Ce3tYwYf0tBwRJMrG19Af/Y568VJ02uo=";
sha256 = "cbij55HZKVLO3MLoDTtFT2YYNVZwbNaYEk+35gIcGdo=";
};
nativeBuildInputs = [ flit ];