nixpkgs/pkgs/development/python-modules/hologram/default.nix
Theodore Ni f2325ea37f
python311Packages.hologram: pull patch to fix tests
The tests were failing due to dataclass changes in Python 3.11.
2023-08-08 08:46:19 -07:00

58 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, jsonschema
, pytestCheckHook
, python-dateutil
, setuptools
, wheel
}:
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=";
};
patches = [
# https://github.com/dbt-labs/hologram/pull/58
(fetchpatch {
name = "python3.11-test-compatibility.patch";
url = "https://github.com/dbt-labs/hologram/commit/84bbe862ef6a2fcc8b8ce85b5c9a006cc7dc1f66.patch";
hash = "sha256-t096jJDoKUPED4QHSfVjUMLtUJjWcqjblCtGR8moEJc=";
})
];
nativeBuildInputs = [
setuptools
wheel
];
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 ];
};
}