ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / tomli / default.nix
blob24a3b2f51f067a9b08163c368e600b116fc4a8e0
1 { lib
2 , buildPythonPackage
3 , callPackage
4 , fetchFromGitHub
5 , flit-core
6 , unittestCheckHook
8   # important downstream dependencies
9 , flit
10 , black
11 , mypy
12 , setuptools-scm
15 buildPythonPackage rec {
16   pname = "tomli";
17   version = "2.0.1";
18   format = "pyproject";
20   src = fetchFromGitHub {
21     owner = "hukkin";
22     repo = pname;
23     rev = version;
24     sha256 = "sha256-v0ZMrHIIaGeORwD4JiBeLthmnKZODK5odZVL0SY4etA=";
25   };
27   nativeBuildInputs = [ flit-core ];
29   checkInputs = [ unittestCheckHook ];
31   pythonImportsCheck = [ "tomli" ];
33   passthru.tests = {
34     # test downstream dependencies
35     inherit flit black mypy setuptools-scm;
36   };
38   meta = with lib; {
39     description = "A Python library for parsing TOML, fully compatible with TOML v1.0.0";
40     homepage = "https://github.com/hukkin/tomli";
41     license = licenses.mit;
42     maintainers = with maintainers; [ veehaitch SuperSandro2000 ];
43   };