depot/third_party/nixpkgs/pkgs/development/python-modules/strictyaml/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
670 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, ruamel_yaml
, python-dateutil
}:
buildPythonPackage rec {
version = "1.0.6";
pname = "strictyaml";
src = fetchPypi {
inherit pname version;
sha256 = "dd687a32577e0b832619ce0552eac86d6afad5fa7b61ab041bb765881c6a1f36";
};
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 ];
};
}