2017-10-21 02:12:30 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, cython, numpy, nine, pytest, pytestrunner, python-utils, enum34 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "numpy-stl";
|
2021-02-11 09:53:35 +00:00
|
|
|
version = "2.15.1";
|
2017-10-21 02:12:30 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-11 09:53:35 +00:00
|
|
|
sha256 = "f57fdb3c0e420f729dbe54ec3add9bdbbd19b62183aa8f4576e00e5834b2ef52";
|
2017-10-21 02:12:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytest pytestrunner ];
|
|
|
|
|
|
|
|
checkPhase = "py.test";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cython numpy nine python-utils enum34 ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Library to make reading, writing and modifying both binary and ascii STL files easy";
|
|
|
|
homepage = "https://github.com/WoLpH/numpy-stl/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|