python3Packages.typechecks: init at unstable-2023-07-13

This commit is contained in:
Samuel Ainsworth 2023-07-14 01:51:46 -04:00
parent 7474f10c9e
commit 76f72af638
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "typechecks";
version = "unstable-2023-07-13";
format = "setuptools";
src = fetchFromGitHub {
owner = "openvax";
repo = pname;
# See https://github.com/openvax/typechecks/issues/2. As of 2023-07-13,
# they do no have version tags.
rev = "5340b4e8a2f419b3a7aa816a5b19e2e0a6ce0679";
hash = "sha256-GdmBtkyuzLfpk6oneWgJ5M1bnhGJ5/lSbGliwoAQWZs=";
};
pythonImportsCheck = [ "typechecks" ];
meta = with lib; {
description = "Type checking helpers for Python";
homepage = "https://github.com/openvax/typechecks";
license = licenses.asl20;
maintainers = with maintainers; [ samuela ];
};
}

View File

@ -12775,6 +12775,8 @@ self: super: with self; {
txzmq = callPackage ../development/python-modules/txzmq { };
typechecks = callPackage ../development/python-modules/typechecks { };
typecode = callPackage ../development/python-modules/typecode { };
typecode-libmagic = callPackage ../development/python-modules/typecode/libmagic.nix {