10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-TGTdYme3ZRM51YFNX/ESFc6+3QpeO/gAXYW6MT73/Ss=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "voluptuous" ];
30 pytestFlagsArray = [ "voluptuous/tests/" ];
33 description = "Python data validation library";
34 downloadPage = "https://github.com/alecthomas/voluptuous";
35 homepage = "http://alecthomas.github.io/voluptuous/";
36 changelog = "https://github.com/alecthomas/voluptuous/blob/${version}/CHANGELOG.md";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ fab ];