fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / python-modules / tomlkit / default.nix
blob8c47693a5829cfc662e669fc540836f3ea14e41e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   # build-system
7   poetry-core,
9   # tests
10   pytestCheckHook,
11   pyyaml,
14 buildPythonPackage rec {
15   pname = "tomlkit";
16   version = "0.13.2";
17   pyproject = true;
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-//X+WahylbJ4q9Mb7JLBXZvEoGiFqxK86lLHERk5Lnk=";
22   };
24   build-system = [ poetry-core ];
26   nativeCheckInputs = [
27     pyyaml
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [ "tomlkit" ];
33   meta = with lib; {
34     homepage = "https://github.com/sdispater/tomlkit";
35     changelog = "https://github.com/sdispater/tomlkit/blob/${version}/CHANGELOG.md";
36     description = "Style-preserving TOML library for Python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ jakewaksbaum ];
39   };