linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / plyfile / default.nix
blobd3042c92e3288c7045ed16bb554d08ba10f5d8d3
1 { lib, fetchPypi, buildPythonPackage, numpy
2 }:
4 buildPythonPackage rec {
5   pname = "plyfile";
6   version = "0.7.3";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "5ac55b685cfcb3e8f70f3c5c2660bd1f6431a892a5319a612792b1ec09aec0f0";
11   };
13   propagatedBuildInputs = [ numpy ];
15   meta = with lib; {
16     description = "NumPy-based text/binary PLY file reader/writer for Python";
17     homepage    = "https://github.com/dranjan/python-plyfile";
18     maintainers = with maintainers; [ abbradar ];
19   };