python3Packages.voluptuous: 0.11.7 -> 0.12.0

Enable tests by running nosetests during checkPhase.
gstqt5
Martin Weinelt 2020-10-07 20:59:10 +02:00
parent 9677cbc5b6
commit 2721442187
1 changed files with 5 additions and 2 deletions

View File

@ -2,14 +2,17 @@
buildPythonPackage rec {
pname = "voluptuous";
version = "0.11.7";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a";
sha256 = "1p5j3fgbpqj31fajkaisdrz10ah9667sijz4kp3m0sbgw6ag4kis";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
description = "Voluptuous is a Python data validation library";