ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / crossplane / default.nix
blob195e733ee8745a9778e2850ee4bd5c45f16be0be
1 { lib
2 , buildPythonPackage
3 , pytestCheckHook
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "crossplane";
10   version = "0.5.8";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "nginxinc";
17     repo = "crossplane";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-DfIF+JvjIREi7zd5ZQ7Co/CIKC5iUeOgR/VLDPmrtTQ=";
20   };
22   checkInputs = [
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [
27     "crossplane"
28   ];
30   meta = with lib; {
31     description = "NGINX configuration file parser and builder";
32     homepage = "https://github.com/nginxinc/crossplane";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ kaction ];
35   };