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

buildPythonPackage rec {
  pname = "pychart";
  version = "1.39";

  disabled = ! isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
  };

  meta = with stdenv.lib; {
    description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
    homepage = "https://pypi.python.org/pypi/PyChart";
    license = licenses.gpl2;
  };
}