about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyx/default.nix
blob: 393f6312332285d2c5e2d966be53f7803e1dd2eb (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
{ 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 ];
  };
}