depot/third_party/nixpkgs/pkgs/development/python-modules/tomlkit/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
785 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
poetry-core,
# tests
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "tomlkit";
version = "0.12.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-fKHPwSIygGUXqFFQR7pmoZNp5x7fJDnQ9YJPkQMrbMM=";
};
nativeBuildInputs = [ poetry-core ];
nativeCheckInputs = [
pyyaml
pytestCheckHook
];
pythonImportsCheck = [ "tomlkit" ];
meta = with lib; {
homepage = "https://github.com/sdispater/tomlkit";
changelog = "https://github.com/sdispater/tomlkit/blob/${version}/CHANGELOG.md";
description = "Style-preserving TOML library for Python";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}