Unverified Commit d4a84529 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.voluptuous-stubs: init at 0.1.1

Typing hints for the voluptuous package.
parent 7560f8ee
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, mypy
}:

buildPythonPackage rec {
  pname = "voluptuous-stubs";
  version = "0.1.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-cPscCIJC8g4RAjJStWSM13+DH2ks2RDI+XE8wTXPjMg=";
  };

  nativeBuildInputs = [
    mypy
  ];

  pythonImportsCheck = [
    "voluptuous-stubs"
  ];

  doCheck = false;

  meta = with lib; {
    description = "Typing stubs for voluptuous";
    homepage = "https://github.com/ryanwang520/voluptuous-stubs";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12179,6 +12179,8 @@ self: super: with self; {

  voluptuous-serialize = callPackage ../development/python-modules/voluptuous-serialize { };

  voluptuous-stubs = callPackage ../development/python-modules/voluptuous-stubs { };

  volvooncall = callPackage ../development/python-modules/volvooncall { };

  vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { };