depot/third_party/nixpkgs/pkgs/development/python-modules/pyyaml-include/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

47 lines
936 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pyyaml
, setuptools
, setuptools-scm
, wheel
}:
buildPythonPackage rec {
pname = "pyyaml-include";
version = "1.3.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "tanbro";
repo = "pyyaml-include";
rev = "refs/tags/v${version}";
hash = "sha256-xsNMIEBYqMVQp+H8R7XpFCwROXA8I6bFvAuHrRvC+DI=";
};
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
pyyaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "yamlinclude" ];
meta = with lib; {
description = "Extending PyYAML with a custom constructor for including YAML files within YAML files";
homepage = "https://github.com/tanbro/pyyaml-include";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jonringer ];
};
}