default.nix (863B)
1 { 2 lib, 3 python3Packages, 4 }: 5 6 python3Packages.buildPythonPackage (finalAttrs: { 7 pname = "pyramid-debugtoolbar"; 8 version = "4.12.1"; 9 pyproject = true; 10 11 src = python3Packages.fetchPypi { 12 pname = "pyramid_debugtoolbar"; 13 inherit (finalAttrs) version; 14 hash = "sha256-ceiI00nIX8yhKz5txMeujj8CodWswFFU/Zuox/ZhtD0="; 15 }; 16 17 build-system = with python3Packages; [ setuptools ]; 18 19 dependencies = with python3Packages; [ 20 pyramid 21 pyramid-mako 22 ]; 23 24 nativeCheckInputs = with python3Packages; [ 25 pytestCheckHook 26 sqlalchemy 27 webtest 28 ]; 29 30 pythonImportsCheck = [ "pyramid_debugtoolbar" ]; 31 32 disabledTests = [ "test_panel" ]; 33 34 meta = { 35 description = "Pyramid debug toolbar"; 36 homepage = "https://github.com/Pylons/pyramid_debugtoolbar"; 37 license = lib.licenses.bsd3; 38 maintainers = [ lib.maintainers.sikmir ]; 39 }; 40 })
