python313Packages.quixote: 3.6 -> 3.7

This commit is contained in:
Fabian Affolter 2025-01-31 20:30:38 +01:00
parent b56cbc701e
commit 9556270339

View File

@ -9,15 +9,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "quixote"; pname = "quixote";
version = "3.6"; version = "3.7";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
pname = "Quixote"; inherit pname version;
inherit version; hash = "sha256-F4u50xz6sNwBIzgEglVnwKTKxguE6f1m9Y2DAUEJsGQ=";
hash = "sha256-78t6tznI3+vIRkWNi0HDPGhR8aGaET3IMXQvmAPdSSY=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];