Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
version = "3.1.0";
pname = "conjure-python-client";
pyproject = true;
src = fetchFromGitHub {
owner = "palantir";
repo = "conjure-python-client";
tag = "${version}";
hash = "sha256-dfoP0/v0yFAyBo4wADDGGTggVuFBoG53e5WTBvKQaS0=";
};
# https://github.com/palantir/conjure-python-client/blob/3.0.0/setup.py#L57
postPatch = ''
echo '__version__ = "${version}"' > ./conjure_python_client/_version.py
'';
build-system = [ setuptools ];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
# some tests depend on a code generator that isn't available in nixpkgs
# https://github.com/palantir/conjure-python-client/blob/3.0.0/CONTRIBUTING.md?plain=1#L23
disabledTestPaths = [
"test/conjure/test_conjure_repr.py"
"test/integration_test"
"test/serde/test_decode_union.py"
];
pythonImportsCheck = [ "conjure_python_client" ];
meta = {
description = "Python client and JSON encoders for use with generated Conjure clients";
homepage = "https://github.com/palantir/conjure-python-client";
changelog = "https://github.com/palantir/conjure-python-client/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ alkasm ];
};
}