python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / types-pyopenssl / default.nix
blob1df09d2fb578fd1353ff11696af4973ec13a8137
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   cryptography,
6 }:
8 buildPythonPackage rec {
9   pname = "types-pyopenssl";
10   version = "24.1.0.20240722";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "types-pyOpenSSL";
15     inherit version;
16     hash = "sha256-R5E7RnigHYefUDoSBERoIh7YV2JjwVQNywSEyiGwjDk=";
17   };
19   propagatedBuildInputs = [ cryptography ];
21   # Module doesn't have tests
22   doCheck = false;
24   pythonImportsCheck = [ "OpenSSL-stubs" ];
26   meta = with lib; {
27     description = "Typing stubs for pyopenssl";
28     homepage = "https://github.com/python/typeshed";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ gador ];
31   };