1{ stdenv, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "voluptuous";
5 version = "0.11.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "af7315c9fa99e0bfd195a21106c82c81619b42f0bd9b6e287b797c6b6b6a9918";
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}