depot/third_party/nixpkgs/pkgs/development/python-modules/tomli/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

44 lines
894 B
Nix

{ lib
, buildPythonPackage
, callPackage
, fetchFromGitHub
, flit-core
, unittestCheckHook
# important downstream dependencies
, flit
, black
, mypy
, setuptools-scm
}:
buildPythonPackage rec {
pname = "tomli";
version = "2.0.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "hukkin";
repo = pname;
rev = version;
hash = "sha256-v0ZMrHIIaGeORwD4JiBeLthmnKZODK5odZVL0SY4etA=";
};
nativeBuildInputs = [ flit-core ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "tomli" ];
passthru.tests = {
# test downstream dependencies
inherit flit black mypy setuptools-scm;
};
meta = with lib; {
description = "A Python library for parsing TOML, fully compatible with TOML v1.0.0";
homepage = "https://github.com/hukkin/tomli";
license = licenses.mit;
maintainers = with maintainers; [ veehaitch ];
};
}