python312Packages.py2bit: 0.3.0 -> 0.3.3 (#371196)

authored by Nick Cao and committed by GitHub 0e548c07 ad4373ce

+20 -9
+20 -9
pkgs/development/python-modules/py2bit/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 - pytest, 6 }: 7 8 buildPythonPackage rec { 9 pname = "py2bit"; 10 - version = "0.3.0"; 11 - format = "setuptools"; 12 - 13 - checkInput = [ pytest ]; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5"; 18 }; 19 20 - meta = with lib; { 21 homepage = "https://github.com/deeptools/py2bit"; 22 description = "File access to 2bit files"; 23 longDescription = '' 24 A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access. 25 ''; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ scalavision ]; 28 }; 29 }
··· 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 + pytestCheckHook, 6 + setuptools, 7 + setuptools-scm, 8 }: 9 10 buildPythonPackage rec { 11 pname = "py2bit"; 12 + version = "0.3.3"; 13 + pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-Jk9b/DnXKfGsrVTHYKwE+oog1BhPS1BdnDM9LgMlN3A="; 18 }; 19 20 + build-system = [ 21 + setuptools 22 + setuptools-scm 23 + ]; 24 + 25 + nativeCheckInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + pytestFlagsArray = [ "py2bitTest/test.py" ]; 30 + 31 + meta = { 32 homepage = "https://github.com/deeptools/py2bit"; 33 description = "File access to 2bit files"; 34 longDescription = '' 35 A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access. 36 ''; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ scalavision ]; 39 }; 40 }