1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 13:29:13 +03:00
nixpkgs/pkgs/development/python-modules/numpy-stl/default.nix

42 lines
728 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, cython
, enum34
, fetchPypi
, nine
, numpy
, pytestCheckHook
, python-utils
}:
2017-10-21 04:12:30 +03:00
buildPythonPackage rec {
pname = "numpy-stl";
version = "3.0.0";
2017-10-21 04:12:30 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-V4t46ssFKayaui8X3MNj1Yx8PFcIcQwY+MHpll8ugaw=";
2017-10-21 04:12:30 +03:00
};
propagatedBuildInputs = [
cython
enum34
nine
numpy
python-utils
];
2017-10-21 04:12:30 +03:00
checkInputs = [
pytestCheckHook
];
2017-10-21 04:12:30 +03:00
pythonImportsCheck = [ "stl" ];
2017-10-21 04:12:30 +03:00
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;
maintainers = with maintainers; [ ];
2017-10-21 04:12:30 +03:00
};
}