mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
45 lines
912 B
Nix
45 lines
912 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;
|
|
sha256 = "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 SuperSandro2000 ];
|
|
};
|
|
}
|