python.pkgs.voluptuous: init at 0.10.5

Needed by elasticsearch-curator.
This commit is contained in:
Bas van Dijk 2017-12-21 22:06:11 +01:00 committed by Orivej Desh
parent fc99ee5ceb
commit b513fc7420
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "voluptuous";
version = "0.10.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "15i3gaap8ilhpbah1ffc6q415wkvliqxilc6s69a4rinvkw6cx3s";
};
checkInputs = [ nose ];
meta = with stdenv.lib; {
description = "Voluptuous is a Python data validation library";
homepage = http://alecthomas.github.io/voluptuous/;
license = licenses.bsd3;
};
}

View File

@ -23290,6 +23290,7 @@ EOF
ephem = callPackage ../development/python-modules/ephem { };
voluptuous = callPackage ../development/python-modules/voluptuous { };
});
in fix' (extends overrides packages)