12 buildPythonPackage rec {
13 pname = "pytest-voluptuous";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "pytest-voluptuous";
22 rev = "refs/tags/${version}";
23 hash = "sha256-xdj4qCSSJQI9Rb1WyUYrAg1I5wQ5o6IJyIjJAafP/LY=";
26 buildInputs = [ pytest ];
28 propagatedBuildInputs = [ voluptuous ];
35 pythonImportsCheck = [ "pytest_voluptuous" ];
37 pytestFlagsArray = [ "tests/test_plugin.py" ];
40 description = "Pytest plugin for asserting data against voluptuous schema";
41 homepage = "https://github.com/F-Secure/pytest-voluptuous";
42 changelog = "https://github.com/F-Secure/pytest-voluptuous/blob/${version}/CHANGELOG.rst";
43 license = licenses.asl20;
44 maintainers = with maintainers; [ fab ];