blob: de2bb79a2b74317188d4ce67df05296dc21e48be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
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 ];
};
}
|