python3Packages.nulltype: init at 2.3.1
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nulltype";
|
||||
version = "2.3.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "0wpjbsmm0c9ifg9y6cnfz49qq9pa5f99nnqp6wdlv42ymfr3rak4";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nulltype"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to handle Null values and sentinels like (but not) None, False and True";
|
||||
homepage = "https://pypi.org/project/nulltype/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -5099,6 +5099,8 @@ in {
|
||||
|
||||
Nuitka = callPackage ../development/python-modules/nuitka { };
|
||||
|
||||
nulltype = callPackage ../development/python-modules/nulltype { };
|
||||
|
||||
num2words = callPackage ../development/python-modules/num2words { };
|
||||
|
||||
numba = callPackage ../development/python-modules/numba { };
|
||||
|
||||
Reference in New Issue
Block a user