2017-12-21 13:06:11 -08:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "voluptuous";
|
2019-08-20 11:10:28 -07:00
|
|
|
version = "0.11.7";
|
2017-12-21 13:06:11 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 11:10:28 -07:00
|
|
|
sha256 = "0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a";
|
2017-12-21 13:06:11 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Voluptuous is a Python data validation library";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://alecthomas.github.io/voluptuous/";
|
2017-12-21 13:06:11 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|