mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
python312Packages.quixote: init at 3.6
A small and flexible Python Web application framework https://pypi.org/project/Quixote/
This commit is contained in:
parent
ad94a1619a
commit
490b52b339
40
pkgs/development/python-modules/quixote/default.nix
Normal file
40
pkgs/development/python-modules/quixote/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user