python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python-modules / numpy-stl / default.nix
blobc4877e839cd117563d27df3ac04dc69bba714fa8
1 { lib
2 , buildPythonPackage
3 , cython
4 , enum34
5 , fetchPypi
6 , nine
7 , numpy
8 , pytestCheckHook
9 , python-utils
12 buildPythonPackage rec {
13   pname = "numpy-stl";
14   version = "2.17.1";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "sha256-NskgGS9EXdV/CRpjYpvdpaknTUdROjOsLvrRJzc5S3o=";
19   };
21   propagatedBuildInputs = [
22     cython
23     enum34
24     nine
25     numpy
26     python-utils
27   ];
29   checkInputs = [
30     pytestCheckHook
31   ];
33   pythonImportsCheck = [ "stl" ];
35   meta = with lib; {
36     description = "Library to make reading, writing and modifying both binary and ascii STL files easy";
37     homepage = "https://github.com/WoLpH/numpy-stl/";
38     license = licenses.bsd3;
39     maintainers = with maintainers; [ ];
40   };