2017-12-22 00:06:11 +03:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "voluptuous";
|
2018-02-17 16:23:13 +03:00
|
|
|
version = "0.11.1";
|
2017-12-22 00:06:11 +03:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-17 16:23:13 +03:00
|
|
|
sha256 = "af7315c9fa99e0bfd195a21106c82c81619b42f0bd9b6e287b797c6b6b6a9918";
|
2017-12-22 00:06:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Voluptuous is a Python data validation library";
|
|
|
|
homepage = http://alecthomas.github.io/voluptuous/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|