evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / nulltype / default.nix
blob0d735b695eaf63d3e3ddca842773ddec6b0e37a4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "nulltype";
10   version = "2.3.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     extension = "zip";
16     sha256 = "0wpjbsmm0c9ifg9y6cnfz49qq9pa5f99nnqp6wdlv42ymfr3rak4";
17   };
19   nativeCheckInputs = [ pytestCheckHook ];
21   pythonImportsCheck = [ "nulltype" ];
23   meta = with lib; {
24     description = "Python library to handle Null values and sentinels like (but not) None, False and True";
25     homepage = "https://pypi.org/project/nulltype/";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ fab ];
28   };