1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "toml";
5 version = "0.10.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f";
10 };
11
12 # This package has a test script (built for Travis) that involves a)
13 # looking in the home directory for a binary test runner and b) using
14 # git to download a test suite.
15 doCheck = false;
16
17 meta = with lib; {
18 description = "a Python library for parsing and creating TOML";
19 homepage = "https://github.com/uiri/toml";
20 license = licenses.mit;
21 maintainers = with maintainers; [ twey ];
22 };
23}