python312Packages.py2bit: 0.3.0 -> 0.3.3 (#371196)
This commit is contained in:
commit
0e548c0744
@ -2,28 +2,39 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pytest,
|
pytestCheckHook,
|
||||||
|
setuptools,
|
||||||
|
setuptools-scm,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "py2bit";
|
pname = "py2bit";
|
||||||
version = "0.3.0";
|
version = "0.3.3";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
checkInput = [ pytest ];
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5";
|
hash = "sha256-Jk9b/DnXKfGsrVTHYKwE+oog1BhPS1BdnDM9LgMlN3A=";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pytestFlagsArray = [ "py2bitTest/test.py" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
homepage = "https://github.com/deeptools/py2bit";
|
homepage = "https://github.com/deeptools/py2bit";
|
||||||
description = "File access to 2bit files";
|
description = "File access to 2bit files";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access.
|
A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access.
|
||||||
'';
|
'';
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ scalavision ];
|
maintainers = with lib.maintainers; [ scalavision ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user