Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-pyopenssl / default.nix
blobd7cf53e4ff68c88e4fa759ba8d32d072142afc46
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cryptography
5 }:
7 buildPythonPackage rec {
8   pname = "types-pyopenssl";
9   version = "24.0.0.20240311";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "types-pyOpenSSL";
14     inherit version;
15     hash = "sha256-e8oAz8Tn75xdJmPGocBow1eY5ZZwWVQ59ilue6PVgIM=";
16   };
18   propagatedBuildInputs = [
19     cryptography
20   ];
22   # Module doesn't have tests
23   doCheck = false;
25   pythonImportsCheck = [
26     "OpenSSL-stubs"
27   ];
29   meta = with lib; {
30     description = "Typing stubs for pyopenssl";
31     homepage = "https://github.com/python/typeshed";
32     license = licenses.asl20;
33     maintainers = with maintainers; [ gador ];
34   };