11 buildPythonPackage rec {
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-A37L/voBrn2aZ7xT8+bWdZJxbWRjnxbstQtSyUeN1sA=";
26 # https://github.com/pycontribs/ruyaml/pull/107
27 substituteInPlace pyproject.toml \
28 --replace '"pip >= 19.3.1",' "" \
29 --replace '"setuptools_scm_git_archive >= 1.1",' ""
36 propagatedBuildInputs = [
45 "-W" "ignore::DeprecationWarning"
48 pythonImportsCheck = [
60 description = "YAML 1.2 loader/dumper package for Python";
61 homepage = "https://ruyaml.readthedocs.io/";
62 changelog = "https://github.com/pycontribs/ruyaml/releases/tag/v${version}";
63 license = with licenses; [ mit ];
64 maintainers = with maintainers; [ fab ];