nixpkgs/pkgs/development/python-modules/ezdxf/default.nix

29 lines
761 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, pyparsing, pytest }:
2017-04-24 23:14:24 +02:00
buildPythonPackage rec {
version = "0.9";
pname = "ezdxf";
2017-04-24 23:14:24 +02:00
disabled = pythonOlder "3.5";
2017-04-25 23:22:53 +02:00
src = fetchFromGitHub {
owner = "mozman";
repo = "ezdxf";
rev = "v${version}";
sha256 = "1ggimjd9060b696sgzgxy9j9sl45wh9qbxnf0035qclafshprlzl";
2017-04-24 23:14:24 +02:00
};
checkInputs = [ pytest ];
checkPhase = "pytest tests integration_tests";
2017-04-25 23:22:53 +02:00
2017-04-24 23:14:24 +02:00
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;
2017-04-25 23:34:45 +02:00
maintainers = with maintainers; [ hodapp ];
2017-04-24 23:14:24 +02:00
platforms = platforms.unix;
};
}