about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/sigstore-protobuf-specs/default.nix')
-rw-r--r--pkgs/development/python-modules/sigstore-protobuf-specs/default.nix29
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix
index 5e89670edef68..a45134a1cbd1b 100644
--- a/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix
+++ b/pkgs/development/python-modules/sigstore-protobuf-specs/default.nix
@@ -1,14 +1,15 @@
-{ lib
-, pythonOlder
-, flit-core
-, fetchPypi
-, buildPythonPackage
-, betterproto
+{
+  lib,
+  pythonOlder,
+  flit-core,
+  fetchPypi,
+  buildPythonPackage,
+  betterproto,
 }:
 
 buildPythonPackage rec {
   pname = "sigstore-protobuf-specs";
-  version = "0.3.0";
+  version = "0.3.1";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -16,23 +17,17 @@ buildPythonPackage rec {
   src = fetchPypi {
     pname = "sigstore_protobuf_specs";
     inherit version;
-    hash = "sha256-MyKttzmSvKDz3G1MLDi6wpCGoR0mMamDrbJ5jljjKlQ=";
+    hash = "sha256-xAthl1uVeukG6ymlvHBA7AFbaLa0YAXMWAXmKUk+jew=";
   };
 
-  nativeBuildInputs = [
-    flit-core
-  ];
+  nativeBuildInputs = [ flit-core ];
 
-  propagatedBuildInputs = [
-    betterproto
-  ];
+  propagatedBuildInputs = [ betterproto ];
 
   # Module has no tests
   doCheck = false;
 
-  pythonImportsCheck = [
-    "sigstore_protobuf_specs"
-  ];
+  pythonImportsCheck = [ "sigstore_protobuf_specs" ];
 
   meta = with lib; {
     description = "Library for serializing and deserializing Sigstore messages";