python312Packages.quixote: init at 3.6

A small and flexible Python Web application framework

https://pypi.org/project/Quixote/
This commit is contained in:
Fabian Affolter 2024-04-29 16:26:35 +02:00
parent ad94a1619a
commit 490b52b339
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "quixote";
version = "3.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "Quixote";
inherit version;
hash = "sha256-78t6tznI3+vIRkWNi0HDPGhR8aGaET3IMXQvmAPdSSY=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "quixote" ];
disabledTestPaths = [
# Test has additional requirements
"quixote/ptl/test/test_ptl.py"
];
meta = with lib; {
description = "A small and flexible Python Web application framework";
homepage = "https://pypi.org/project/Quixote/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -12899,6 +12899,8 @@ self: super: with self; {
quil = callPackage ../development/python-modules/quil { };
quixote = callPackage ../development/python-modules/quixote { };
qutip = callPackage ../development/python-modules/qutip { };
qmk-dotty-dict = callPackage ../development/python-modules/qmk-dotty-dict { };