stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / pyx / default.nix
blob0cb5b39462e6baacec57f29c06566442e8bf5946
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy3k,
6 }:
8 buildPythonPackage rec {
9   pname = "pyx";
10   version = "0.16";
11   format = "setuptools";
12   disabled = !isPy3k;
14   src = fetchPypi {
15     pname = "PyX";
16     inherit version;
17     hash = "sha256-TY4+RxzT6am9E9UIbN98CvGww/PhledPX2MxjcQKZtg=";
18   };
20   # No tests in archive
21   doCheck = false;
23   meta = with lib; {
24     description = "Python package for the generation of PostScript, PDF, and SVG files";
25     homepage = "https://pyx.sourceforge.net/";
26     license = with licenses; [ gpl2 ];
27   };