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