mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 00:24:47 +00:00
python312Packages.typing-validation: init at 1.2.11
This commit is contained in:
parent
dd2b7d9ac3
commit
11d1c33c86
@ -0,0 +1,58 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
|
||||
, pytestCheckHook
|
||||
|
||||
, pythonOlder
|
||||
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, wheel
|
||||
|
||||
, numpy
|
||||
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "typing-validation";
|
||||
version = "1.2.11";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hashberg-io";
|
||||
repo = "typing-validation";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-0scXoAPkx/VBIbNRMtFoRRbmGpC2RzNRmQG4mRXSxrs=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
numpy
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"typing_validation"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple library for runtime type-checking";
|
||||
homepage = "https://github.com/hashberg-io/typing-validation";
|
||||
changelog = "https://github.com/hashberg-io/typing-validation/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ vizid ];
|
||||
};
|
||||
}
|
@ -16013,6 +16013,8 @@ self: super: with self; {
|
||||
|
||||
typing-inspect = callPackage ../development/python-modules/typing-inspect { };
|
||||
|
||||
typing-validation = callPackage ../development/python-modules/typing-validation { };
|
||||
|
||||
typish = callPackage ../development/python-modules/typish { };
|
||||
|
||||
typogrify = callPackage ../development/python-modules/typogrify { };
|
||||
|
Loading…
Reference in New Issue
Block a user