python3Packages.discid: 1.3.0 -> 1.4.0 (#505135)

This commit is contained in:
Michael Daniels 2026-05-17 00:33:14 +00:00 committed by GitHub
commit ef7ccfeaa5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,16 +5,25 @@
buildPythonPackage,
fetchPypi,
setuptools,
sphinxHook,
sphinx-autodoc-typehints,
sphinx-rtd-theme,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "discid";
version = "1.3.0";
version = "1.4.0";
pyproject = true;
outputs = [
"out"
"doc"
];
src = fetchPypi {
inherit pname version;
sha256 = "sha256-cWChIRrD1qbYIT+4jdPXPjKr5eATNqWkyYWwgql9QzU=";
sha256 = "sha256-UP09tEXK60S593Y3d+1JaIw89GM9qZ00DCW5GUlrqLU=";
};
build-system = [
@ -31,6 +40,16 @@ buildPythonPackage rec {
"_open_library('${libdiscid}/lib/libdiscid${extension}')"
'';
nativeBuildInputs = [
sphinxHook
sphinx-autodoc-typehints
sphinx-rtd-theme
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Python binding of libdiscid";
homepage = "https://python-discid.readthedocs.org/";