biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / sigstore-protobuf-specs / default.nix
blob043b47e2431085b18654bb7e2e34ea1dc89bbf13
2   lib,
3   pythonOlder,
4   flit-core,
5   fetchPypi,
6   buildPythonPackage,
7   betterproto,
8 }:
10 buildPythonPackage rec {
11   pname = "sigstore-protobuf-specs";
12   version = "0.3.2";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     pname = "sigstore_protobuf_specs";
19     inherit version;
20     hash = "sha256-yuBBtAUCYAuKYz9DwldpXQIiqU76HlEQp+x62njDnZk=";
21   };
23   nativeBuildInputs = [ flit-core ];
25   propagatedBuildInputs = [ betterproto ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "sigstore_protobuf_specs" ];
32   meta = with lib; {
33     description = "Library for serializing and deserializing Sigstore messages";
34     homepage = "https://pypi.org/project/sigstore-protobuf-specs/";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ fab ];
37   };