nixpkgs/pkgs/development/python-modules/xlsx2csv/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

28 lines
511 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "xlsx2csv";
version = "0.8.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-fs1tK8JCby5DL0/awSIR4ZdtPLtl+QM+Htpl7dogReM=";
};
nativeBuildInputs = [
setuptools
];
meta = with lib; {
homepage = "https://github.com/dilshod/xlsx2csv";
description = "Convert xlsx to csv";
license = licenses.bsd3;
maintainers = with maintainers; [ jb55 ];
};
}