Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2020-08-17 17:51:54 +02:00
499 changed files with 2713 additions and 6206 deletions

View File

@@ -1,6 +1,7 @@
{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, ruamel_yaml
, python-dateutil
}:
@@ -8,6 +9,7 @@
buildPythonPackage rec {
version = "1.1.0";
pname = "strictyaml";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
@@ -19,6 +21,7 @@ buildPythonPackage rec {
# Library tested with external tool
# https://hitchdev.com/approach/contributing-to-hitch-libraries/
doCheck = false;
pythonImportsCheck = [ "strictyaml" ];
meta = with lib; {
description = "Strict, typed YAML parser";