python3Packages.voluptuous-stubs: init at 0.1.1

Typing hints for the voluptuous package.
This commit is contained in:
Martin Weinelt 2023-02-22 23:28:50 +01:00
parent 7560f8eea5
commit d4a8452985
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ 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 ];
};
}

View file

@ -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 { };