summary refs log tree commit diff
path: root/pkgs/development/python-modules/leather/default.nix
blob: 30a76747723aaee826a92f39b69d93aebd57fc4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchPypi, buildPythonPackage, six }:

buildPythonPackage rec {
  pname = "leather";
  version = "0.3.3";

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