about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyx/default.nix
blob: 0cb5b39462e6baacec57f29c06566442e8bf5946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
}:

buildPythonPackage rec {
  pname = "pyx";
  version = "0.16";
  format = "setuptools";
  disabled = !isPy3k;

  src = fetchPypi {
    pname = "PyX";
    inherit version;
    hash = "sha256-TY4+RxzT6am9E9UIbN98CvGww/PhledPX2MxjcQKZtg=";
  };

  # No tests in archive
  doCheck = false;

  meta = with lib; {
    description = "Python package for the generation of PostScript, PDF, and SVG files";
    homepage = "https://pyx.sourceforge.net/";
    license = with licenses; [ gpl2 ];
  };
}