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

42 lines
742 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 = "2.16.2";
2017-10-21 04:12:30 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "3e635b6fb6112a3c5e00e9e20eedab93b9b0c45ff1cc34eb7bdc0b3e922e2d77";
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
};
}