python3Packages.typish: init at 1.9.3
This commit is contained in:
parent
ce8d6722f9
commit
d51e8de8c6
2 changed files with 42 additions and 0 deletions
40
pkgs/development/python-modules/typish/default.nix
Normal file
40
pkgs/development/python-modules/typish/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "typish";
|
||||
version = "1.9.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ramonhagenaars";
|
||||
repo = "typish";
|
||||
rev = "7875850f55e2df8a9e2426e2d484ab618e347c7f";
|
||||
sha256 = "0mc5hw92f15mwd92rb2q9isc4wi7xq76449w7ph5bskcspas0wrf";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
numpy
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Requires a very old version of nptyping
|
||||
# which has a circular dependency on typish
|
||||
"tests/functions/test_instance_of.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"typish"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for checking types of objects";
|
||||
homepage = "https://github.com/ramonhagenaars/typish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fmoda3 ];
|
||||
};
|
||||
}
|
|
@ -11020,6 +11020,8 @@ in {
|
|||
|
||||
typing-inspect = callPackage ../development/python-modules/typing-inspect { };
|
||||
|
||||
typish = callPackage ../development/python-modules/typish { };
|
||||
|
||||
typogrify = callPackage ../development/python-modules/typogrify { };
|
||||
|
||||
tzdata = callPackage ../development/python-modules/tzdata { };
|
||||
|
|
Loading…
Reference in a new issue