biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / crossplane / default.nix
blobfba9c59aa32696c4fb2400469271e21125b59329
2   lib,
3   buildPythonPackage,
4   pytestCheckHook,
5   fetchFromGitHub,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "crossplane";
11   version = "0.5.8";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "nginxinc";
18     repo = "crossplane";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-DfIF+JvjIREi7zd5ZQ7Co/CIKC5iUeOgR/VLDPmrtTQ=";
21   };
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "crossplane" ];
27   meta = with lib; {
28     description = "NGINX configuration file parser and builder";
29     mainProgram = "crossplane";
30     homepage = "https://github.com/nginxinc/crossplane";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ kaction ];
33   };