blob: 87e078f0ceb75f7c89fbe4f79e200d989541d599 (
plain)
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 = {
description = "Python package for the generation of PostScript, PDF, and SVG files";
homepage = "https://pyx.sourceforge.net/";
license = with lib.licenses; [ gpl2 ];
};
}
|