python3Packages.voluptuous-stubs: init at 0.1.1
Typing hints for the voluptuous package.
This commit is contained in:
parent
7560f8eea5
commit
d4a8452985
33
pkgs/development/python-modules/voluptuous-stubs/default.nix
Normal file
33
pkgs/development/python-modules/voluptuous-stubs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user