9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
17 inherit pname version;
18 hash = "sha256-IvhUpfyrQrXduoAwoOS+UcqJrwJnlhyNbPqGOVWGxAc=";
22 substituteInPlace setup.py \
23 --replace "ruamel.yaml==0.17.4" "ruamel.yaml"
26 propagatedBuildInputs = [
31 # Library tested with external tool
32 # https://hitchdev.com/approach/contributing-to-hitch-libraries/
35 pythonImportsCheck = [
40 description = "Strict, typed YAML parser";
41 homepage = "https://hitchdev.com/strictyaml/";
42 changelog = "https://hitchdev.com/strictyaml/changelog/";
43 license = licenses.mit;
44 maintainers = with maintainers; [ jonringer ];