leather: Init at 0.3.3

This commit is contained in:
Rahul Gopinath
2017-02-11 15:44:23 -08:00
committed by Franz Pletz
parent e5ac6bc999
commit ce8af120f2
2 changed files with 24 additions and 0 deletions

View File

@@ -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 ];
};
}