python3Packages.types-pyyaml: init at 6.0.8

main
David Reiss 2 years ago committed by Robert Schütz
parent d95b741788
commit 39dff39cf3
  1. 30
      pkgs/development/python-modules/types-pyyaml/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-pyyaml";
version = "6.0.8";
format = "setuptools";
src = fetchPypi {
pname = "types-PyYAML";
inherit version;
sha256 = "0f349hmw597f2gcja445fsrlnfzb0dj7fy62g8wcbydlgcvmsjfr";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"yaml-stubs"
];
meta = with lib; {
description = "Typing stubs for PyYAML";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ dnr ];
};
}

@ -10768,6 +10768,8 @@ in {
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-pyyaml = callPackage ../development/python-modules/types-pyyaml { };
types-redis = callPackage ../development/python-modules/types-redis { };
types-requests = callPackage ../development/python-modules/types-requests { };

Loading…
Cancel
Save