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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
729 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.17.0";
2017-10-21 04:12:30 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-G42ak4w4OAbE2RTe3STN03A43/rZqJBbB8rBm0TlOWU=";
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
};
}