depot/third_party/nixpkgs/pkgs/development/python-modules/tomlkit/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

29 lines
832 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27
, enum34, functools32, typing ? null
}:
buildPythonPackage rec {
pname = "tomlkit";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "ac57f29693fab3e309ea789252fcce3061e19110085aa31af5446ca749325618";
};
propagatedBuildInputs =
lib.optionals isPy27 [ enum34 functools32 ]
++ lib.optional isPy27 typing;
# The Pypi tarball doesn't include tests, and the GitHub source isn't
# buildable until we bootstrap poetry, see
# https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
doCheck = false;
meta = with lib; {
homepage = "https://github.com/sdispater/tomlkit";
description = "Style-preserving TOML library for Python";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}