summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJames Kay <james@hadean.com>2018-03-20 17:07:15 +0000
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-03-25 01:45:51 -0500
commit2e02bcaedcbaaa954d37524ba853e44c9a04b296 (patch)
tree9429e1e88567fdb4c9a48f7083dc4d5cfecca085 /pkgs/development/python-modules
parenta48d58ff73781ebbc9e7107631f58b3c8c33e2f5 (diff)
downloadnixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar.gz
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar.bz2
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar.lz
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar.xz
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.tar.zst
nixlib-2e02bcaedcbaaa954d37524ba853e44c9a04b296.zip
toml: init at 0.9.4
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/toml/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/toml/default.nix b/pkgs/development/python-modules/toml/default.nix
new file mode 100644
index 000000000000..a80657dc4b45
--- /dev/null
+++ b/pkgs/development/python-modules/toml/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "toml";
+  version = "0.9.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0bdbpbip67wdm6c7xwc6mmbmskyradj4cdxn1iibj4fcx1nbv1lf";
+  };
+
+  # This package has a test script (built for Travis) that involves a)
+  # looking in the home directory for a binary test runner and b) using
+  # git to download a test suite.
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "a Python library for parsing and creating TOML";
+    homepage = "https://github.com/uiri/toml";
+    license = licenses.mit;
+    maintainers = with maintainers; [ twey ];
+  };
+}