1{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
2
3buildPythonPackage rec {
4 pname = "Cerberus";
5 version = "1.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "f5c2e048fb15ecb3c088d192164316093fcfa602a74b3386eefb2983aa7e800a";
10 };
11
12 checkInputs = [ pytestrunner pytest ];
13
14 meta = with stdenv.lib; {
15 homepage = http://python-cerberus.org/;
16 description = "Lightweight, extensible schema and data validation tool for Python dictionaries";
17 license = licenses.mit;
18 };
19}