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