1{ stdenv, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "voluptuous";
5 version = "0.11.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "567a56286ef82a9d7ae0628c5842f65f516abcb496e74f3f59f1d7b28df314ef";
10 };
11
12 checkInputs = [ nose ];
13
14 meta = with stdenv.lib; {
15 description = "Voluptuous is a Python data validation library";
16 homepage = http://alecthomas.github.io/voluptuous/;
17 license = licenses.bsd3;
18 };
19}