{ lib, buildPythonPackage, fetchPypi, isPy27 , enum34, functools32, typing }: buildPythonPackage rec { pname = "tomlkit"; version = "0.6.0"; src = fetchPypi { inherit pname version; sha256 = "74f976908030ff164c0aa1edabe3bf83ea004b3daa5b0940b9c86a060c004e9a"; }; 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 ]; }; }