mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.discid: 1.3.0 -> 1.4.0 (#505135)
This commit is contained in:
commit
ef7ccfeaa5
1 changed files with 21 additions and 2 deletions
|
|
@ -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/";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue