linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pychart / default.nix
blobf020361474a18c0aca54425328c53d5e801ee568
1 { lib, buildPythonPackage, fetchPypi, isPy27 }:
3 buildPythonPackage rec {
4   pname = "pychart";
5   version = "1.39";
7   disabled = ! isPy27;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "882650928776a7ca72e67054a9e0ac98f78645f279c0cfb5910db28f03f07c2e";
12   };
14   meta = with lib; {
15     description = "Library for creating high quality encapsulated Postscript, PDF, PNG, or SVG charts";
16     homepage = "https://pypi.python.org/pypi/PyChart";
17     license = licenses.gpl2;
18   };