python3Packages.strictyaml: 1.0.6 -> 1.1.0

This commit is contained in:
Jonathan Ringer 2020-08-15 11:36:12 -07:00
parent b7be00ad5e
commit 2a01ea5211
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

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