1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "toml";
5 version = "0.9.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0bdbpbip67wdm6c7xwc6mmbmskyradj4cdxn1iibj4fcx1nbv1lf";
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 stdenv.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}