Merge pull request #119017 from fabaff/bump-pykwalify

python3Packages.pykwalify: 1.7.0 -> 1.8.0
This commit is contained in:
Sandro 2021-04-10 18:41:58 +02:00 committed by GitHub
commit 42f3ca2467
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,32 +1,40 @@
{ lib, buildPythonPackage, fetchPypi { lib
, dateutil, docopt, pyyaml , buildPythonPackage
, pytest, testfixtures , dateutil
, docopt
, fetchPypi
, pytestCheckHook
, pyyaml
, ruamel-yaml
, testfixtures
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.7.0"; version = "1.8.0";
pname = "pykwalify"; pname = "pykwalify";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1cnfzkg1b01f825ikpw2fhjclf9c8akxjfrbd1vc22x1lg2kk2vy"; sha256 = "sha256-eWsq0+1MuZuIMItTP7L1WcMPpu+0+p/aETR/SD0kWIQ=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil dateutil
docopt docopt
pyyaml pyyaml
ruamel-yaml
]; ];
checkInputs = [ checkInputs = [
pytest pytestCheckHook
testfixtures testfixtures
]; ];
checkPhase = '' disabledTests = [
pytest \ "test_multi_file_support"
-k 'not test_multi_file_support' ];
'';
pythonImportsCheck = [ "pykwalify" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/Grokzen/pykwalify"; homepage = "https://github.com/Grokzen/pykwalify";