python313Packages.standard-sunau: init at 3.13.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user