depot/third_party/nixpkgs/pkgs/development/python-modules/hologram/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

45 lines
859 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, jsonschema
, pytestCheckHook
, python-dateutil
, setuptools
}:
buildPythonPackage rec {
pname = "hologram";
version = "0.0.16";
format = "pyproject";
src = fetchFromGitHub {
owner = "dbt-labs";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-DboVCvByI8bTThamGBwSiQADGxIaEnTMmwmVI+4ARgc=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
jsonschema
python-dateutil
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"hologram"
];
meta = with lib; {
description = "A library for automatically generating Draft 7 JSON Schemas from Python dataclasses";
homepage = "https://github.com/dbt-labs/hologram";
license = licenses.mit;
maintainers = with maintainers; [ mausch tjni ];
};
}