10 buildPythonPackage rec {
13 format = "setuptools";
14 disabled = pythonOlder "3.8";
17 inherit pname version;
18 hash = "sha256-N+gWl8fbqVoFNVTltahq/zKXBeHPXfxee42lht7gcrg=";
21 nativeBuildInputs = [ setuptools-scm ];
23 pythonImportsCheck = [ "screed" ];
24 checkInputs = [ pytestCheckHook ];
26 # These tests use the screed CLI and make assumptions on how screed is
27 # installed that break with nix. Can be enabled when upstream is fixed.
30 "Test_fa_shell_command"
31 "Test_fq_shell_command"
35 description = "Simple read-only sequence database, designed for short reads";
36 mainProgram = "screed";
37 homepage = "https://pypi.org/project/screed/";
38 maintainers = with maintainers; [ luizirber ];
39 license = licenses.bsd3;