nixos/java: No bashisms in `environment.shellInit` script (#294121)
[NixPkgs.git] / pkgs / development / python-modules / quixote / default.nix
blobcfbabdb57e4492d7c1f5d40039d44533aa441653
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "quixote";
12   version = "3.6";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     pname = "Quixote";
19     inherit version;
20     hash = "sha256-78t6tznI3+vIRkWNi0HDPGhR8aGaET3IMXQvmAPdSSY=";
21   };
23   build-system = [ setuptools ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   pythonImportsCheck = [ "quixote" ];
29   disabledTestPaths = [
30     # Test has additional requirements
31     "quixote/ptl/test/test_ptl.py"
32   ];
34   meta = with lib; {
35     description = "Small and flexible Python Web application framework";
36     homepage = "https://pypi.org/project/Quixote/";
37     license = licenses.mit;
38     maintainers = with maintainers; [ fab ];
39   };