summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-09-23 21:23:34 -0500
committerGitHub <noreply@github.com>2022-09-23 21:23:34 -0500
commit5a0b8cc8f547e9b2d4ed0715ae914be32a5c0835 (patch)
tree3f4d547b7a189cb0ebcdf42e6034e89940df350a
parent50746ab0a226d5b8830e4a5b25887790070cc3b7 (diff)
parentb81573950ea92eef4ee8ac2e55af4dffd9b5dcbb (diff)
Merge pull request #192539 from r-ryantm/auto-update/python3.10-crossplane
python310Packages.crossplane: 0.5.7 -> 0.5.8
-rw-r--r--pkgs/development/python-modules/crossplane/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/crossplane/default.nix b/pkgs/development/python-modules/crossplane/default.nix
index 14e153cd8b281..195e733ee8745 100644
--- a/pkgs/development/python-modules/crossplane/default.nix
+++ b/pkgs/development/python-modules/crossplane/default.nix
@@ -1,23 +1,35 @@
-{ lib, buildPythonPackage, pytestCheckHook, fetchFromGitHub }:
+{ lib
+, buildPythonPackage
+, pytestCheckHook
+, fetchFromGitHub
+, pythonOlder
+}:
 
 buildPythonPackage rec {
   pname = "crossplane";
-  version = "0.5.7";
+  version = "0.5.8";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "nginxinc";
     repo = "crossplane";
-    rev = "v${version}";
-    sha256 = "0lv3frfvnvz5wjxwh3mwy8nbypv4i62v4bvy5fv7vd6kmbxy1q9l";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-DfIF+JvjIREi7zd5ZQ7Co/CIKC5iUeOgR/VLDPmrtTQ=";
   };
 
-  checkInputs = [ pytestCheckHook ];
+  checkInputs = [
+    pytestCheckHook
+  ];
 
-  pythonImportsCheck = [ "crossplane" ];
+  pythonImportsCheck = [
+    "crossplane"
+  ];
 
   meta = with lib; {
-    homepage = "https://github.com/nginxinc/crossplane";
     description = "NGINX configuration file parser and builder";
+    homepage = "https://github.com/nginxinc/crossplane";
     license = licenses.asl20;
     maintainers = with maintainers; [ kaction ];
   };