ezdxf (Python package): init at 0.8.1

This commit is contained in:
Chris Hodapp 2017-04-24 17:14:24 -04:00
parent 84b1c0c481
commit 244b575a1d
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchurl, isPy3k, pyparsing }:
buildPythonPackage rec {
version = "0.8.1";
name = "ezdxf-${version}";
src = fetchurl {
url = "mirror://pypi/e/ezdxf/${name}.zip";
sha256 = "1q4la4h7840wb8l2jf39wy68gq5jwymkghb1a1mg8qblj424130k";
};
# Tests fail on Python 3.x, but module imports and works
doCheck = !(isPy3k);
propagatedBuildInputs = [ pyparsing ];
meta = with stdenv.lib; {
description = "Python package to read and write DXF drawings (interface to the DXF file format)";
homepage = https://github.com/mozman/ezdxf/;
license = licenses.mit;
platforms = platforms.unix;
};
}

View File

@ -6990,6 +6990,8 @@ in {
};
};
ezdxf = callPackage ../development/python-modules/ezdxf {};
facebook-sdk = buildPythonPackage rec {
name = "facebook-sdk-0.4.0";