depot/third_party/nixpkgs/pkgs/development/python-modules/crossplane/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

36 lines
719 B
Nix

{ lib
, buildPythonPackage
, pytestCheckHook
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "crossplane";
version = "0.5.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nginxinc";
repo = "crossplane";
rev = "refs/tags/v${version}";
hash = "sha256-DfIF+JvjIREi7zd5ZQ7Co/CIKC5iUeOgR/VLDPmrtTQ=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"crossplane"
];
meta = with lib; {
description = "NGINX configuration file parser and builder";
homepage = "https://github.com/nginxinc/crossplane";
license = licenses.asl20;
maintainers = with maintainers; [ kaction ];
};
}