Merge pull request #130581 from veehaitch/python-tomli
pythonPackages.tomli: init at 1.0.4
This commit is contained in:
commit
470168e427
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/tomli/default.nix
Normal file
36
pkgs/development/python-modules/tomli/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, flit-core
|
||||||
|
, pytestCheckHook
|
||||||
|
, python-dateutil
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "tomli";
|
||||||
|
version = "1.0.4";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hukkin";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-ld0PsYnxVH3RbLG/NpvLDj9UhAe+QgwCQVXgGgqh8kE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ flit-core ];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
python-dateutil
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "tomli" ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8689,6 +8689,8 @@ in {
|
||||||
|
|
||||||
toml = callPackage ../development/python-modules/toml { };
|
toml = callPackage ../development/python-modules/toml { };
|
||||||
|
|
||||||
|
tomli = callPackage ../development/python-modules/tomli { };
|
||||||
|
|
||||||
tomlkit = callPackage ../development/python-modules/tomlkit { };
|
tomlkit = callPackage ../development/python-modules/tomlkit { };
|
||||||
|
|
||||||
toolz = callPackage ../development/python-modules/toolz { };
|
toolz = callPackage ../development/python-modules/toolz { };
|
||||||
|
|
Loading…
Reference in a new issue