pythonPackages.pyx: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
4f7d4bca11
commit
97a27838c1
27
pkgs/development/python-modules/pyx/default.nix
Normal file
27
pkgs/development/python-modules/pyx/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyx";
|
||||
version = "0.14.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "05d1b7fc813379d2c12fcb5bd0195cab522b5aabafac88f72913f1d47becd912";
|
||||
};
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python package for the generation of PostScript, PDF, and SVG files";
|
||||
homepage = http://pyx.sourceforge.net/;
|
||||
license = with licenses; [ gpl2 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user