about summary refs log tree commit diff
path: root/pkgs/development/python-modules/leather
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2017-02-11 15:44:23 -0800
committerFranz Pletz <fpletz@fnordicwalking.de>2017-02-15 10:24:53 +0100
commitce8af120f222ef16de8f2ff5d130ef1c0a76080e (patch)
treefeff5fab065546603eeb8afce3f722df3a0511c7 /pkgs/development/python-modules/leather
parente5ac6bc9992b17c59df2f16d9b0ec469ec600566 (diff)
downloadnixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar.gz
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar.bz2
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar.lz
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar.xz
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.tar.zst
nixlib-ce8af120f222ef16de8f2ff5d130ef1c0a76080e.zip
leather: Init at 0.3.3
Diffstat (limited to 'pkgs/development/python-modules/leather')
-rw-r--r--pkgs/development/python-modules/leather/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/leather/default.nix b/pkgs/development/python-modules/leather/default.nix
new file mode 100644
index 000000000000..e7c67819ed70
--- /dev/null
+++ b/pkgs/development/python-modules/leather/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchPypi, buildPythonPackage, six }:
+
+buildPythonPackage rec {
+  pname = "leather";
+  version = "0.3.3";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "125r372q7bwcajfdysp7w5zh5wccwxf1mkhqawl8h518nl1icv87";
+  };
+
+  propagatedBuildInputs = [ six ];
+
+  meta = with stdenv.lib; {
+    homepage = "http://leather.rtfd.io";
+    description = "Python charting library";
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ vrthra ];
+  };
+}