ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / types-pyyaml / default.nix
blobf61550c4148b3aac281050242863cf37613c6028
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-pyyaml";
8   version = "6.0.12.1";
9   format = "setuptools";
11   src = fetchPypi {
12     pname = "types-PyYAML";
13     inherit version;
14     sha256 = "sha256-cMyq/PP7QE1Xv/wVKf3YahPotPLPn8PugaZAjOCtWdI=";
15   };
17   # Module doesn't have tests
18   doCheck = false;
20   pythonImportsCheck = [
21     "yaml-stubs"
22   ];
24   meta = with lib; {
25     description = "Typing stubs for PyYAML";
26     homepage = "https://github.com/python/typeshed";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ dnr ];
29   };