1{ stdenv, fetchPypi, buildPythonPackage, six }:
2
3buildPythonPackage rec {
4 pname = "leather";
5 version = "0.3.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "125r372q7bwcajfdysp7w5zh5wccwxf1mkhqawl8h518nl1icv87";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 meta = with stdenv.lib; {
15 homepage = http://leather.rtfd.io;
16 description = "Python charting library";
17 license = licenses.mit;
18 platforms = platforms.all;
19 maintainers = with maintainers; [ vrthra ];
20 };
21}