blob: 33cd9c5fc7597b68a54af301a45bc4ef7ba63c6c (
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
|
{
lib,
buildPythonPackage,
pytestCheckHook,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "crossplane";
version = "0.5.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "nginxinc";
repo = "crossplane";
tag = "v${version}";
hash = "sha256-DfIF+JvjIREi7zd5ZQ7Co/CIKC5iUeOgR/VLDPmrtTQ=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "crossplane" ];
meta = {
description = "NGINX configuration file parser and builder";
mainProgram = "crossplane";
homepage = "https://github.com/nginxinc/crossplane";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kaction ];
};
}
|