Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nulltype / default.nix
blobf04f9df780dca5b2a2f217cd6de2ae1ca0fa8ee5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "nulltype";
9   version = "2.3.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "0wpjbsmm0c9ifg9y6cnfz49qq9pa5f99nnqp6wdlv42ymfr3rak4";
16   };
18   nativeCheckInputs = [
19     pytestCheckHook
20   ];
22   pythonImportsCheck = [
23     "nulltype"
24   ];
26   meta = with lib; {
27     description = "Python library to handle Null values and sentinels like (but not) None, False and True";
28     homepage = "https://pypi.org/project/nulltype/";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ fab ];
31   };