depot/third_party/nixpkgs/pkgs/development/python-modules/quixote/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

40 lines
800 B
Nix

{
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 ];
};
}