pythonPackages.strictyaml: init at 1.0.1

This commit is contained in:
Jonathan Ringer 2019-06-17 16:13:02 -07:00 committed by Frederik Rietdijk
parent 467ce7b534
commit 5e85d08484
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ buildPythonPackage
, lib
, fetchPypi
, ruamel_yaml
, python-dateutil
}:
buildPythonPackage rec {
version = "1.0.1";
pname = "strictyaml";
src = fetchPypi {
inherit pname version;
sha256 = "1baz5zjl1z9dwaczaga1ik1iy1v9zg3acwnpmgghwnk9hw2i1mq6";
};
propagatedBuildInputs = [ ruamel_yaml python-dateutil ];
# Library tested with external tool
# https://hitchdev.com/approach/contributing-to-hitch-libraries/
doCheck = false;
meta = with lib; {
description = "Strict, typed YAML parser";
homepage = https://hitchdev.com/strictyaml/;
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View File

@ -5534,6 +5534,8 @@ in {
strict-rfc3339 = callPackage ../development/python-modules/strict-rfc3339 { };
strictyaml = callPackage ../development/python-modules/strictyaml { };
twilio = callPackage ../development/python-modules/twilio { };
uranium = callPackage ../development/python-modules/uranium { };