11 buildPythonPackage rec {
12 pname = "pyyaml-include";
16 src = fetchFromGitHub {
18 repo = "pyyaml-include";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-xsNMIEBYqMVQp+H8R7XpFCwROXA8I6bFvAuHrRvC+DI=";
23 env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
31 propagatedBuildInputs = [
39 pythonImportsCheck = [ "yamlinclude" ];
42 description = "Extending PyYAML with a custom constructor for including YAML files within YAML files";
43 homepage = "https://github.com/tanbro/pyyaml-include";
44 license = licenses.gpl3Plus;
45 maintainers = with maintainers; [ jonringer ];