python313Packages.standard-sunau: init at 3.13.0

This commit is contained in:
Gaetan Lepage
2025-03-11 16:47:46 +01:00
parent bd900a893a
commit 669a349c32
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
audioop-lts,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "standard-sunau";
version = "3.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "youknowone";
repo = "python-deadlib";
tag = "v${version}";
hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=";
};
sourceRoot = "${src.name}/sunau";
build-system = [
setuptools
];
dependencies = [
audioop-lts
];
pythonImportsCheck = [ "sunau" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Standard library sunau redistribution";
homepage = "https://github.com/youknowone/python-deadlib/tree/main/sunau";
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ GuillaumeDesforges ];
};
}
+2
View File
@@ -15976,6 +15976,8 @@ self: super: with self; {
standard-pipes = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-pipes { } else null;
standard-sunau = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-sunau { } else null;
standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null;
standardwebhooks = callPackage ../development/python-modules/standardwebhooks { };