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