nixpkgs/pkgs/development/python-modules/xlrd/default.nix
Weijia Wang 218c4c526e
Merge pull request #212002 from mothsART/feature/replace_http_by_https
treewide: replace http by https when https is a permanent redirection
2023-01-22 03:26:02 +01:00

30 lines
564 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xlrd";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
};
nativeCheckInputs = [
pytestCheckHook
];
# No tests in archive
doCheck = false;
meta = with lib; {
homepage = "https://www.python-excel.org/";
description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
license = licenses.bsd0;
};
}