nixpkgs/pkgs/development/python-modules/quixote/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

41 lines
798 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 = "Small and flexible Python Web application framework";
homepage = "https://pypi.org/project/Quixote/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}