nixpkgs/pkgs/development/python-modules/strictyaml/default.nix
R. RyanTM d7340fe232 python37Packages.strictyaml: 1.0.1 -> 1.0.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-strictyaml/versions
2019-10-08 08:42:28 -07:00

30 lines
656 B
Nix

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