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

29 lines
764 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, pyparsing, pytest }:
2017-04-24 23:14:24 +02:00
buildPythonPackage rec {
2020-05-06 16:31:16 +02:00
version = "0.12";
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}";
2020-05-06 16:31:16 +02:00
sha256 = "1flcq96ljk5wqrmgsb4acflqzkg7rhlaxz0j5jxky9za0mj1x6dq";
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)";
2020-02-26 22:34:10 +01:00
homepage = "https://github.com/mozman/ezdxf/";
2017-04-24 23:14:24 +02:00
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;
};
}