nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 isPy3k,
6}:
7
8buildPythonPackage rec {
9 pname = "pyx";
10 version = "0.17";
11 format = "setuptools";
12 disabled = !isPy3k;
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-O8iqgJExVZ96XA4fESm0LHGt423wMyET9cV3k4SjmvE=";
17 };
18
19 # No tests in archive
20 doCheck = false;
21
22 meta = {
23 description = "Python package for the generation of PostScript, PDF, and SVG files";
24 homepage = "https://pyx.sourceforge.net/";
25 license = with lib.licenses; [ gpl2 ];
26 };
27}