depot/third_party/nixpkgs/pkgs/development/python-modules/screed/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
986 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pythonOlder,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "screed";
version = "1.1.3";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-N+gWl8fbqVoFNVTltahq/zKXBeHPXfxee42lht7gcrg=";
};
nativeBuildInputs = [ setuptools-scm ];
pythonImportsCheck = [ "screed" ];
checkInputs = [ pytestCheckHook ];
# These tests use the screed CLI and make assumptions on how screed is
# installed that break with nix. Can be enabled when upstream is fixed.
disabledTests = [
"Test_convert_shell"
"Test_fa_shell_command"
"Test_fq_shell_command"
];
meta = with lib; {
description = "A simple read-only sequence database, designed for short reads";
mainProgram = "screed";
homepage = "https://pypi.org/project/screed/";
maintainers = with maintainers; [ luizirber ];
license = licenses.bsd3;
};
}